diff --git a/.gitignore b/.gitignore index 7ce78de..33a02e4 100644 --- a/.gitignore +++ b/.gitignore @@ -56,14 +56,10 @@ playground.xcworkspace # CocoaPods # -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: +# Sample apps: do NOT commit Pods. Podfile.lock is the source of truth; +# users run `pod install` themselves. See: # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -# Pods/ -# -# Add this line if you want to avoid checking in source code from the Xcode workspace -# *.xcworkspace +Pods/ # Carthage # @@ -95,3 +91,23 @@ fastlane/test_output iOSInjectionProject/ +# Internal planning + AI-agent scratch space (not for distribution) +docs/plans/ +docs/superpowers/ +docs/reports/ + +# Editor / IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# macOS metadata +.AppleDouble +.LSOverride +._* + +# Claude / agent state +.claude-trace/ + diff --git a/docs/integration-matrix/README.md b/docs/integration-matrix/README.md new file mode 100644 index 0000000..4cb23b6 --- /dev/null +++ b/docs/integration-matrix/README.md @@ -0,0 +1,41 @@ +# Integration matrix — v7 reference + +This directory maps the DevHub iOS code-generation matrix to v7-correct snippets. Each snippet is copied **verbatim** from one of the three sample apps in this repo (`obj-c/`, `swift/basic_app/`, `swiftui/basic_app_swiftui/`), so the docs and runnable code stay in lockstep. + +The v7 default spine is [`registerSessionReadyListener`](flags/session-ready-listener.md) — the SDK's official timing gate. Every other flag layers onto it. If you're coming from v6, the [v6 → v7 migration page](migration/v6-to-v7.md) covers why the `NotificationCenter.didBecomeActive → start()` workaround is gone and what the SceneDelegate flag means now. + +## Preset permutations + +| Preset | Description | Swift snippet | ObjC snippet | Source sample | +|--------|-------------|---------------|--------------|---------------| +| `minimal` | Debug + initialize + delegates + handleLaunchOptions + registerSessionReadyListener + start. No ATT, no CUID, no SceneDelegate. | [`snippets/swift/minimal.swift`](snippets/swift/minimal.swift) | [`snippets/objc/minimal.m`](snippets/objc/minimal.m) | derived from `swift/basic_app/` and `obj-c/` | +| `all-flags-on` | Every matrix flag enabled: Debug + CUID + delegates + handleLaunchOptions + Session-ready listener wrapping ATT + start with completion handler. | [`snippets/swift/all-flags-on.swift`](snippets/swift/all-flags-on.swift) | [`snippets/objc/all-flags-on.m`](snippets/objc/all-flags-on.m) | `swift/basic_app/basic_app/AppDelegate.swift`, `obj-c/obj-c/AppDelegate.m` | +| `scene-delegate` | The SceneDelegate file alone (deep-link routing). Pairs with any AppDelegate preset. | [`snippets/swift/scene-delegate.swift`](snippets/swift/scene-delegate.swift) | [`snippets/objc/scene-delegate.m`](snippets/objc/scene-delegate.m) | `swift/basic_app/basic_app/SceneDelegate.swift`, `obj-c/obj-c/SceneDelegate.m` | +| `att-only` | `minimal` + ATT request inside the session-ready block, before `start()`. | combine [`minimal.swift`](snippets/swift/minimal.swift) with the ATT block from [`all-flags-on.swift`](snippets/swift/all-flags-on.swift) | combine [`minimal.m`](snippets/objc/minimal.m) with the ATT block from [`all-flags-on.m`](snippets/objc/all-flags-on.m) | `swift/basic_app/basic_app/AppDelegate.swift`, `obj-c/obj-c/AppDelegate.m` | +| `cuid-only` | `minimal` + CUID assignment before delegates. | combine [`minimal.swift`](snippets/swift/minimal.swift) with the CUID line from [`all-flags-on.swift`](snippets/swift/all-flags-on.swift) | combine [`minimal.m`](snippets/objc/minimal.m) with the CUID line from [`all-flags-on.m`](snippets/objc/all-flags-on.m) | `swift/basic_app/basic_app/AppDelegate.swift`, `obj-c/obj-c/AppDelegate.m` | + +The full 16-cell cross product of the four toggleable flags is not enumerated — only the named presets above. Add or remove the matching block from `all-flags-on` to build any other combination. + +## Per-flag pages + +| Flag | Page | DevHub label | +|------|------|--------------| +| Debug logs | [flags/debug-logs.md](flags/debug-logs.md) | Debug logs | +| SceneDelegate support | [flags/scene-delegate.md](flags/scene-delegate.md) | SceneDelegate | +| ATT | [flags/att.md](flags/att.md) | ATT | +| Customer User ID | [flags/customer-user-id.md](flags/customer-user-id.md) | Customer User ID (CUID) | +| Session-ready listener | [flags/session-ready-listener.md](flags/session-ready-listener.md) | Session-ready listener (v7 default spine — always on) | + +## Migration + +- [v6 → v7 SceneDelegate migration](migration/v6-to-v7.md) — why the `didBecomeActive` observer is gone, what the SceneDelegate flag means in v7, and what to do for SwiftUI lifecycle apps. + +## Sample app reference + +| Sample | AppDelegate | SceneDelegate | +|--------|-------------|---------------| +| obj-c | `obj-c/obj-c/AppDelegate.m` | `obj-c/obj-c/SceneDelegate.m` | +| swift | `swift/basic_app/basic_app/AppDelegate.swift` | `swift/basic_app/basic_app/SceneDelegate.swift` | +| swiftui | `swiftui/basic_app_swiftui/AppDelegate.swift` | n/a — `WindowGroup` owns scene management; deep links handled via `.onContinueUserActivity` + `.onOpenURL` in `swiftui/basic_app_swiftui/Screens/MainView.swift` | + +Grep `[Matrix flag]` in any of the AppDelegate files to find the marked region for each toggle. diff --git a/docs/integration-matrix/flags/att.md b/docs/integration-matrix/flags/att.md new file mode 100644 index 0000000..0b59ead --- /dev/null +++ b/docs/integration-matrix/flags/att.md @@ -0,0 +1,80 @@ +# ATT (App Tracking Transparency) + +**Purpose:** Request the user's tracking-authorization decision before `start()` so the SDK can include IDFA in the install/session payload when granted. Required by App Store policy for any SDK that reads IDFA. + +## Where it lives + +| Sample | File | Line | +|--------|------|------| +| obj-c | `obj-c/obj-c/AppDelegate.m` | 46-65 | +| swift | `swift/basic_app/basic_app/AppDelegate.swift` | 41-60 | +| swiftui | `swiftui/basic_app_swiftui/AppDelegate.swift` | 56-75 | + +ATT lives **inside** the `registerSessionReadyListener` block, **before** `start()`. This replaces v6's `waitForATTUserAuthorization:` — v7 has no built-in ATT timeout. The session-ready listener guarantees the SDK is ready, and your code controls when ATT is requested. + +## Swift + +```swift +// MARK: - [Matrix flag] Session-ready listener (v7 default spine) +AppsFlyerLib.shared().registerSessionReadyListener { + // MARK: - [Matrix flag] ATT + if #available(iOS 14, *) { + ATTrackingManager.requestTrackingAuthorization { _ in + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } else { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } +} +``` + +## Objective-C + +```objectivec +#pragma mark - [Matrix flag] Session-ready listener (v7 default spine) +[[AppsFlyerLib shared] registerSessionReadyListener:^{ +#pragma mark - [Matrix flag] ATT + // ATT request goes here if the app needs it before start + if (@available(iOS 14, *)) { + [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + }]; + } else { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + } +}]; +``` + +## Behavioral notes + +- **Info.plist:** `NSUserTrackingUsageDescription` is required. Without it, the prompt never displays and `requestTrackingAuthorization` resolves with `.denied`. +- **Timing:** the prompt only shows once per install. After the user decides, subsequent calls resolve immediately with the stored status. +- **Threading:** the completion handler fires on an arbitrary queue. Don't touch UIKit there. Calling `start()` from the completion is fine — `AppsFlyerLib` handles its own threading. +- **iOS < 14:** the `#available` / `@available` else branch calls `start()` directly. IDFA is available unconditionally on pre-iOS-14 devices. +- **If omitted:** `start()` runs without IDFA on iOS 14+ devices (treated as ATT-denied by Apple). Attribution still works via probabilistic and SKAdNetwork paths, but install-quality signals degrade. +- **tvOS:** ATT is unavailable. Skip this block entirely on tvOS targets. +- **Don't:** call `start()` outside the `registerSessionReadyListener` block just because ATT denied. The listener is the gate; the ATT branch only decides whether to prompt first. diff --git a/docs/integration-matrix/flags/customer-user-id.md b/docs/integration-matrix/flags/customer-user-id.md new file mode 100644 index 0000000..a31c7ef --- /dev/null +++ b/docs/integration-matrix/flags/customer-user-id.md @@ -0,0 +1,36 @@ +# Customer User ID (CUID) + +**Purpose:** Tag every event sent by the SDK with your app's internal user identifier. The CUID flows through to raw-data reports and downstream BI so attribution can be reconciled against your own user model. + +## Where it lives + +| Sample | File | Line | +|--------|------|------| +| obj-c | `obj-c/obj-c/AppDelegate.m` | 32-33 | +| swift | `swift/basic_app/basic_app/AppDelegate.swift` | 27-28 | +| swiftui | `swiftui/basic_app_swiftui/AppDelegate.swift` | 39-40 | + +Set **after** `initialize(...)` and **before** `start()`. Setting it before `start()` ensures the install event itself carries the CUID; setting it after `start()` only tags subsequent events. + +## Swift + +```swift +// MARK: - [Matrix flag] Customer User ID (CUID) +AppsFlyerLib.shared().customerUserID = "my user id" +``` + +## Objective-C + +```objectivec +#pragma mark - [Matrix flag] Customer User ID (CUID) +[AppsFlyerLib shared].customerUserID = @"my user id"; +``` + +## Behavioral notes + +- **Persistence:** the SDK stores the CUID across launches. Set it once; it sticks until you change it or call `setCustomerUserID(nil)`. +- **Timing:** set before `start()` to include it on the install event. If your user identifier is only known after login, set it then — the install will be re-attributed once it arrives, but only via downstream reconciliation, not on the original install row. +- **Threading:** simple property setter, safe from any thread. Conventionally main. +- **Privacy:** the CUID is yours — don't use raw PII (email, phone) as the value. Hash if needed. Most apps use a backend-issued opaque ID. +- **If omitted:** events ship without `customer_user_id`. Attribution still works; you just can't join reports back to your own user table by this column. +- **Anonymize interaction:** if `anonymizeUser = true`, the CUID is still sent. `anonymizeUser` suppresses device identifiers, not your CUID. diff --git a/docs/integration-matrix/flags/debug-logs.md b/docs/integration-matrix/flags/debug-logs.md new file mode 100644 index 0000000..030ae43 --- /dev/null +++ b/docs/integration-matrix/flags/debug-logs.md @@ -0,0 +1,36 @@ +# Debug logs + +**Purpose:** Enable verbose SDK logging during development. Logs install, session, attribution, deep-link, and network events to the Xcode console. + +## Where it lives + +| Sample | File | Line | +|--------|------|------| +| obj-c | `obj-c/obj-c/AppDelegate.m` | 25-27 | +| swift | `swift/basic_app/basic_app/AppDelegate.swift` | 21-22 | +| swiftui | `swiftui/basic_app_swiftui/AppDelegate.swift` | 33-34 | + +Set this **before** anything else on `AppsFlyerLib.shared()`. It costs nothing to set early, and a few setters log at construction time. + +## Swift + +```swift +// MARK: - [Matrix flag] Debug logs +AppsFlyerLib.shared().isDebug = true +``` + +## Objective-C + +```objectivec +#pragma mark - [Matrix flag] Debug logs +// Set isDebug to true to see AppsFlyer debug logs +[AppsFlyerLib shared].isDebug = YES; +``` + +## Behavioral notes + +- **Default:** `false`. The SDK ships silent. +- **Timing:** safe at any point, but earlier is better — late toggles miss bootstrap-time logs. +- **Threading:** main thread is conventional; the property is a simple BOOL set. +- **If omitted:** the SDK still runs normally. You just get no console output. Set this when reproducing an attribution issue or wiring up a new integration. +- **Production:** ship with `isDebug = false`. Leaving it on inflates console noise and can leak request/response payloads to anyone with a device log. diff --git a/docs/integration-matrix/flags/scene-delegate.md b/docs/integration-matrix/flags/scene-delegate.md new file mode 100644 index 0000000..cb435c7 --- /dev/null +++ b/docs/integration-matrix/flags/scene-delegate.md @@ -0,0 +1,88 @@ +# SceneDelegate + +**Purpose:** Route Universal Links (`NSUserActivity`) and URI schemes (`UIOpenURLContext`) into the SDK in scene-based apps. In v7, this flag generates the `SceneDelegate` file **only**. It does **not** add a `NotificationCenter.didBecomeActive` observer — see [migration/v6-to-v7.md](../migration/v6-to-v7.md). + +## Where it lives + +| Sample | File | Line | +|--------|------|------| +| obj-c | `obj-c/obj-c/SceneDelegate.m` | 15-39 | +| swift | `swift/basic_app/basic_app/SceneDelegate.swift` | 12-37 | +| swiftui | n/a — `App` lifecycle apps don't get a SceneDelegate; use `.onContinueUserActivity` + `.onOpenURL` view modifiers. See `swiftui/basic_app_swiftui/Screens/MainView.swift:71-78`. | + +## Swift + +```swift +// MARK: - [Matrix flag] SceneDelegate +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + func scene(_ scene: UIScene, + willConnectTo session: UISceneSession, + options connectionOptions: UIScene.ConnectionOptions) { + if let userActivity = connectionOptions.userActivities.first { + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) + } + for urlContext in connectionOptions.urlContexts { + AppsFlyerLib.shared().handleOpen(urlContext.url, options: nil) + } + } + + func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) + } + + func scene(_ scene: UIScene, openURLContexts URLContexts: Set) { + for context in URLContexts { + AppsFlyerLib.shared().handleOpen(context.url, options: nil) + } + } +} +``` + +## Objective-C + +```objectivec +#pragma mark - [Matrix flag] SceneDelegate +@implementation SceneDelegate + + +- (void)scene:(UIScene *)scene + willConnectToSession:(UISceneSession *)session + options:(UISceneConnectionOptions *)connectionOptions { + NSUserActivity *userActivity = connectionOptions.userActivities.anyObject; + if (userActivity) { + [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; + } + for (UIOpenURLContext *urlContext in connectionOptions.URLContexts) { + [[AppsFlyerLib shared] handleOpenUrl:urlContext.URL options:nil]; + } +} + +- (void)scene:(UIScene *)scene continueUserActivity:(NSUserActivity *)userActivity { + [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; +} + +- (void)scene:(UIScene *)scene openURLContexts:(NSSet *)URLContexts { + for (UIOpenURLContext *urlContext in URLContexts) { + [[AppsFlyerLib shared] handleOpenUrl:urlContext.URL options:nil]; + } +} +``` + +## Behavioral notes + +- **Three delivery channels:** + - `scene(_:willConnectTo:options:)` — cold launch via deep link. The scene didn't exist yet; both Universal Links and URI schemes arrive in `connectionOptions`. + - `scene(_:continue:)` — Universal Link delivered to an already-connected scene (warm path). + - `scene(_:openURLContexts:)` — URI scheme delivered to an already-connected scene. +- **Symbol naming (ObjC):** the SDK exposes `handleOpenUrl:options:` (lowercase `u`). Do not write `handleOpenURL:options:`. +- **Timing:** these methods can fire before, during, or after `registerSessionReadyListener` resolves. The SDK buffers deep-link inputs internally and replays them once readiness is reached. +- **Threading:** UIKit calls these on the main thread. +- **If omitted in a scene-based app:** Universal Links and URI schemes silently drop. `AppDelegate`'s `continueUserActivity` / `openURL:` overrides are bypassed by UIKit once a SceneDelegate is wired up in `Info.plist`. +- **SwiftUI lifecycle:** see the migration callout — `WindowGroup` owns scene management, so the SDK is fed via `.onContinueUserActivity` and `.onOpenURL` instead. + +## Migration + +See [migration/v6-to-v7.md](../migration/v6-to-v7.md) for why the v6 `NotificationCenter.didBecomeActive` workaround is gone and what the flag means now. diff --git a/docs/integration-matrix/flags/session-ready-listener.md b/docs/integration-matrix/flags/session-ready-listener.md new file mode 100644 index 0000000..bc3d1b3 --- /dev/null +++ b/docs/integration-matrix/flags/session-ready-listener.md @@ -0,0 +1,86 @@ +# Session-ready listener (v7 default spine) + +**Purpose:** The SDK's official timing gate. The block you register fires after the SDK has resolved its readiness preconditions and is ready to send the install/session event. This is the v7 replacement for the v6 `NotificationCenter.didBecomeActive → start()` workaround. + +Not a toggleable matrix flag — always on. The DevHub generator wires this in for every v7 integration. It's the backbone the other flags layer onto. + +## Where it lives + +| Sample | File | Line | +|--------|------|------| +| obj-c | `obj-c/obj-c/AppDelegate.m` | 44-67 | +| swift | `swift/basic_app/basic_app/AppDelegate.swift` | 39-61 | +| swiftui | `swiftui/basic_app_swiftui/AppDelegate.swift` | 54-76 | + +Register **after** `initialize(...)`, the delegates, and `handleLaunchOptions(_:)`. `start()` lives **inside** the block. + +## Swift + +```swift +// MARK: - [Matrix flag] Session-ready listener (v7 default spine) +AppsFlyerLib.shared().registerSessionReadyListener { + // MARK: - [Matrix flag] ATT + if #available(iOS 14, *) { + ATTrackingManager.requestTrackingAuthorization { _ in + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } else { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } +} +``` + +## Objective-C + +```objectivec +#pragma mark - [Matrix flag] Session-ready listener (v7 default spine) +[[AppsFlyerLib shared] registerSessionReadyListener:^{ +#pragma mark - [Matrix flag] ATT + // ATT request goes here if the app needs it before start + if (@available(iOS 14, *)) { + [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + }]; + } else { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + } +}]; +``` + +## Behavioral notes + +- **Readiness preconditions:** the listener fires after the SDK has resolved: + - dev key set via `initialize(...)` + - `appleAppID` set via `initialize(...)` + - `handleLaunchOptions(_:)` has returned + - any cold-launch Universal Link resolved (with a 5s watchdog so the listener can't be permanently blocked) +- **Lifecycle-agnostic:** fires correctly whether your app is `UIApplicationDelegate`-only, AppDelegate + SceneDelegate, or pure SwiftUI `App` with `WindowGroup`. You don't need a `didBecomeActive` observer on top. +- **Threading:** the block runs on an internal serial queue. Don't touch UIKit directly inside it. ATT's completion handler and `start()`'s completion handler are also off-main — dispatch back to main if you need to update UI. +- **Timeout:** 5s watchdog on Universal Link resolution. If a cold-launch UL doesn't resolve in time, the listener still fires so `start()` isn't permanently blocked. +- **Order matters:** call `handleLaunchOptions(launchOptions)` **before** `registerSessionReadyListener`. The listener checks completion of `handleLaunchOptions` as a precondition. +- **If omitted:** `start()` never runs (no install event, no session, no attribution). This is a revenue-critical failure — the SDK has no fallback for "developer forgot to call `start()`." Treat the listener and its `start()` call as mandatory; the matrix flag never turns it off. +- **Idempotency:** `start()` is safe to call again after the first session. Subsequent calls do nothing useful — the SDK's session logic dedupes — but they don't crash. Don't rely on this; call it exactly once from inside the listener. diff --git a/docs/integration-matrix/migration/v6-to-v7.md b/docs/integration-matrix/migration/v6-to-v7.md new file mode 100644 index 0000000..41b4a42 --- /dev/null +++ b/docs/integration-matrix/migration/v6-to-v7.md @@ -0,0 +1,190 @@ +# V6 → V7 SceneDelegate migration + +## TL;DR + +In v7, the **SceneDelegate** matrix flag generates `SceneDelegate.swift` (or `.m`) for **deep-link routing only**. The v6 `NotificationCenter.didBecomeActive` observer that called `AppsFlyerLib.shared().start()` is gone. `registerSessionReadyListener` is the SDK's official timing gate; the v6 observer was a workaround for a problem v7 solves natively. + +If you're migrating a v6 integration: + +- **Remove** the `UIApplicationDidBecomeActiveNotification` observer and any `@objc func sendLaunch()` selector that calls `start()`. +- **Keep** the SceneDelegate file — but only for `scene(_:continue:)`, `scene(_:openURLContexts:)`, and the cold-launch path in `scene(_:willConnectTo:options:)`. +- **Move** `start()` inside a `registerSessionReadyListener` block in `application(_:didFinishLaunchingWithOptions:)`. + +## What the v6 pattern was solving + +The v6 DevHub generator emitted code like this in `application(_:didFinishLaunchingWithOptions:)`: + +```swift +// v6 — DO NOT COPY +NotificationCenter.default.addObserver( + self, + selector: #selector(sendLaunch), + name: UIApplication.didBecomeActiveNotification, + object: nil +) + +// ... + +@objc func sendLaunch() { + AppsFlyerLib.shared().start() +} +``` + +```objectivec +// v6 — DO NOT COPY +[[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(sendLaunch) + name:UIApplicationDidBecomeActiveNotification + object:nil]; + +// ... + +- (void)sendLaunch { + [[AppsFlyerLib shared] start]; +} +``` + +**Why this existed:** in a scene-based app, `application(_:didFinishLaunchingWithOptions:)` can return **before any scene is connected**. Calling `start()` directly there raced the scene lifecycle: + +- Universal Links delivered via `scene(_:willConnectTo:options:)` hadn't arrived yet. +- The first foreground signal hadn't fired. +- Attribution context (specifically, cold-launch deep-link state) could be missing from the install event. + +Deferring `start()` to `didBecomeActive` guaranteed a scene was alive and any UL was already in flight. It worked, but it was a downstream patch on the SDK's timing model. + +## Why v7 doesn't need it + +`registerSessionReadyListener` fires only after the SDK has resolved its readiness conditions: + +- dev key set +- `appleAppID` set +- `handleLaunchOptions(_:)` returned +- any cold-launch Universal Link resolved (with a 5s watchdog so the listener can't be permanently blocked) + +It's **lifecycle-agnostic by design**. It fires correctly whether the app is: + +- `UIApplicationDelegate`-only (legacy iOS 12 layout) +- AppDelegate + SceneDelegate (UIKit scene-based) +- pure SwiftUI `App` with `WindowGroup` + +Layering `didBecomeActive → start()` on top is at best redundant; at worst it triggers a second `start()` call when the user backgrounds and foregrounds the app. The SDK dedupes internally, but the extra call is a smell. + +## What the SceneDelegate flag means now + +It scaffolds the `SceneDelegate` file that routes Universal Links and URI schemes into the SDK: + +- `scene(_:continue:)` — Universal Link delivered to an active scene (warm path). +- `scene(_:openURLContexts:)` — URI scheme delivered to an active scene. +- `scene(_:willConnectTo:options:)` — both channels on cold launch, where the scene didn't exist yet. + +Without this file in a scene-based app, deep links silently drop on the floor. UIKit stops routing `continueUserActivity` / `openURL:` to `AppDelegate` once a `SceneDelegate` is declared in `Info.plist`. + +## Code diff — AppDelegate region + +### v6 (deprecated) + +```swift +func application(_ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + + AppsFlyerLib.shared().appsFlyerDevKey = "..." + AppsFlyerLib.shared().appleAppID = "..." + AppsFlyerLib.shared().delegate = self + AppsFlyerLib.shared().deepLinkDelegate = self + AppsFlyerLib.shared().waitForATTUserAuthorization(timeoutInterval: 60) + + NotificationCenter.default.addObserver( + self, + selector: #selector(sendLaunch), + name: UIApplication.didBecomeActiveNotification, + object: nil + ) + + return true +} + +@objc func sendLaunch() { + AppsFlyerLib.shared().start() +} +``` + +### v7 (canonical) + +```swift +func application(_ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + + // MARK: - [Matrix flag] Debug logs + AppsFlyerLib.shared().isDebug = true + + AppsFlyerLib.shared().initialize(devKey: "...", appId: "...") + + // MARK: - [Matrix flag] Customer User ID (CUID) + AppsFlyerLib.shared().customerUserID = "my user id" + + AppsFlyerLib.shared().delegate = self + AppsFlyerLib.shared().deepLinkDelegate = self + AppsFlyerLib.shared().handleLaunchOptions(launchOptions) + + // MARK: - [Matrix flag] Session-ready listener (v7 default spine) + AppsFlyerLib.shared().registerSessionReadyListener { + // MARK: - [Matrix flag] ATT + if #available(iOS 14, *) { + ATTrackingManager.requestTrackingAuthorization { _ in + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } else { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } + + return true +} +``` + +Key differences: + +- `appsFlyerDevKey` / `appleAppID` property setters replaced by `initialize(devKey:appId:)`. +- `waitForATTUserAuthorization` gone. ATT lives inside `registerSessionReadyListener`, before `start()`. +- `NotificationCenter` observer gone. `start()` lives inside `registerSessionReadyListener`. +- `handleLaunchOptions(_:)` is now a hard precondition for the readiness listener. +- `start { dictionary, error in ... }` reports success/failure via completion handler. + +## SwiftUI footnote + +`App`-lifecycle apps don't get a `SceneDelegate` even when the matrix flag is on. `WindowGroup` owns scene management; `UIWindowSceneDelegate` is bypassed. Use the SwiftUI view modifiers instead: + +```swift +.onContinueUserActivity(NSUserActivityTypeBrowsingWeb) { userActivity in + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) +} +.onOpenURL { url in + AppsFlyerLib.shared().handleOpen(url, options: nil) +} +``` + +Reference: [`swiftui/basic_app_swiftui/Screens/MainView.swift:71-78`](../../../swiftui/basic_app_swiftui/Screens/MainView.swift). + +`registerSessionReadyListener` still belongs in your `UIApplicationDelegateAdaptor`'s `application(_:didFinishLaunchingWithOptions:)` — see [`swiftui/basic_app_swiftui/AppDelegate.swift:54-76`](../../../swiftui/basic_app_swiftui/AppDelegate.swift). + +## If you really must call `start()` on `didBecomeActive` + +You shouldn't. But if you have a custom SDK lifecycle requirement that demands it: + +- `start()` is idempotent under v7 session-readiness. Calling it again after the first session succeeds does nothing useful — the SDK dedupes the session event internally. +- You will not crash, but you will burn cycles and add noise to your logs. +- The recommended pattern is to call `start()` exactly once, from inside the `registerSessionReadyListener` block. If you need to trigger something on every foreground, observe `didBecomeActive` yourself and call your own code — not `start()`. + +This escape hatch exists for backward compatibility with shipped v6 code while you migrate. It is not a v7-blessed pattern. diff --git a/docs/integration-matrix/snippets/objc/all-flags-on.m b/docs/integration-matrix/snippets/objc/all-flags-on.m new file mode 100644 index 0000000..6d76a18 --- /dev/null +++ b/docs/integration-matrix/snippets/objc/all-flags-on.m @@ -0,0 +1,51 @@ +// Source: obj-c/obj-c/AppDelegate.m lines 24-69 +// All matrix flags ON: Debug logs + CUID + delegates + handleLaunchOptions +// + Session-ready listener wrapping ATT + start with completion handler. + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { +#pragma mark - [Matrix flag] Debug logs + // Set isDebug to true to see AppsFlyer debug logs + [AppsFlyerLib shared].isDebug = YES; + + // Replace 'appsFlyerDevKey', `appleAppID` with your DevKey, Apple App ID + [[AppsFlyerLib shared] initWithDevKey:@"sQ84wpdxRTR4RMCaE9YqS4" appleAppId:@"1512793879"]; + +#pragma mark - [Matrix flag] Customer User ID (CUID) + [AppsFlyerLib shared].customerUserID = @"my user id"; + + [AppsFlyerLib shared].delegate = self; + [AppsFlyerLib shared].deepLinkDelegate = self; + + // Set the OneLink template id for share invite links + [AppsFlyerLib shared].appInviteOneLinkID = @"H5hv"; + + // Required before listener registration if app supports Universal Links + [[AppsFlyerLib shared] handleLaunchOptions:launchOptions]; + +#pragma mark - [Matrix flag] Session-ready listener (v7 default spine) + [[AppsFlyerLib shared] registerSessionReadyListener:^{ +#pragma mark - [Matrix flag] ATT + // ATT request goes here if the app needs it before start + if (@available(iOS 14, *)) { + [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + }]; + } else { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + } + }]; + + return YES; +} diff --git a/docs/integration-matrix/snippets/objc/minimal.m b/docs/integration-matrix/snippets/objc/minimal.m new file mode 100644 index 0000000..ad7e9b0 --- /dev/null +++ b/docs/integration-matrix/snippets/objc/minimal.m @@ -0,0 +1,30 @@ +// Minimal v7 init: Debug logs + initialize + delegates + handleLaunchOptions +// + registerSessionReadyListener wrapping startWithCompletionHandler:. +// Derived from obj-c/obj-c/AppDelegate.m with ATT, CUID, and SceneDelegate +// hookup stripped. + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { +#pragma mark - [Matrix flag] Debug logs + [AppsFlyerLib shared].isDebug = YES; + + [[AppsFlyerLib shared] initWithDevKey:@"sQ84wpdxRTR4RMCaE9YqS4" appleAppId:@"1512793879"]; + + [AppsFlyerLib shared].delegate = self; + [AppsFlyerLib shared].deepLinkDelegate = self; + + // Required before listener registration if app supports Universal Links + [[AppsFlyerLib shared] handleLaunchOptions:launchOptions]; + +#pragma mark - [Matrix flag] Session-ready listener (v7 default spine) + [[AppsFlyerLib shared] registerSessionReadyListener:^{ + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + }]; + + return YES; +} diff --git a/docs/integration-matrix/snippets/objc/scene-delegate.m b/docs/integration-matrix/snippets/objc/scene-delegate.m new file mode 100644 index 0000000..ed7e3ac --- /dev/null +++ b/docs/integration-matrix/snippets/objc/scene-delegate.m @@ -0,0 +1,76 @@ +// +// SceneDelegate.m +// projectiv-c +// +// Created by Test1 on 13/12/2023. +// + +#import "SceneDelegate.h" +#import + +@interface SceneDelegate () + +@end + +#pragma mark - [Matrix flag] SceneDelegate +@implementation SceneDelegate + + +- (void)scene:(UIScene *)scene + willConnectToSession:(UISceneSession *)session + options:(UISceneConnectionOptions *)connectionOptions { + NSUserActivity *userActivity = connectionOptions.userActivities.anyObject; + if (userActivity) { + [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; + } + for (UIOpenURLContext *urlContext in connectionOptions.URLContexts) { + [[AppsFlyerLib shared] handleOpenUrl:urlContext.URL options:nil]; + } +} + +- (void)scene:(UIScene *)scene continueUserActivity:(NSUserActivity *)userActivity { + [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; +} + +- (void)scene:(UIScene *)scene openURLContexts:(NSSet *)URLContexts { + for (UIOpenURLContext *urlContext in URLContexts) { + [[AppsFlyerLib shared] handleOpenUrl:urlContext.URL options:nil]; + } +} + +- (void)sceneDidDisconnect:(UIScene *)scene { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). +} + + +- (void)sceneDidBecomeActive:(UIScene *)scene { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. +} + + +- (void)sceneWillResignActive:(UIScene *)scene { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). +} + + +- (void)sceneWillEnterForeground:(UIScene *)scene { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. +} + + +- (void)sceneDidEnterBackground:(UIScene *)scene { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. +} + + + + +@end diff --git a/docs/integration-matrix/snippets/swift/all-flags-on.swift b/docs/integration-matrix/snippets/swift/all-flags-on.swift new file mode 100644 index 0000000..845057e --- /dev/null +++ b/docs/integration-matrix/snippets/swift/all-flags-on.swift @@ -0,0 +1,50 @@ +// Source: swift/basic_app/basic_app/AppDelegate.swift lines 19-63 +// All matrix flags ON: Debug logs + CUID + delegates + handleLaunchOptions +// + Session-ready listener wrapping ATT + start with completion handler. + +func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + + // MARK: - [Matrix flag] Debug logs + AppsFlyerLib.shared().isDebug = true + + // Replace 'appsFlyerDevKey', `appleAppID` with your DevKey, Apple App ID + AppsFlyerLib.shared().initialize(devKey: "sQ84wpdxRTR4RMCaE9YqS4", appId: "1512793879") + + // MARK: - [Matrix flag] Customer User ID (CUID) + AppsFlyerLib.shared().customerUserID = "my user id" + + AppsFlyerLib.shared().delegate = self + AppsFlyerLib.shared().deepLinkDelegate = self + + //set the OneLink template id for share invite links + AppsFlyerLib.shared().appInviteOneLinkID = "H5hv" + + // Required before listener registration if app supports Universal Links + AppsFlyerLib.shared().handleLaunchOptions(launchOptions) + + // MARK: - [Matrix flag] Session-ready listener (v7 default spine) + AppsFlyerLib.shared().registerSessionReadyListener { + // MARK: - [Matrix flag] ATT + if #available(iOS 14, *) { + ATTrackingManager.requestTrackingAuthorization { _ in + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } else { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } + + return true +} diff --git a/docs/integration-matrix/snippets/swift/minimal.swift b/docs/integration-matrix/snippets/swift/minimal.swift new file mode 100644 index 0000000..a6074c0 --- /dev/null +++ b/docs/integration-matrix/snippets/swift/minimal.swift @@ -0,0 +1,31 @@ +// Minimal v7 init: Debug logs + initialize + delegates + handleLaunchOptions +// + registerSessionReadyListener wrapping start with completion handler. +// Derived from swift/basic_app/basic_app/AppDelegate.swift with ATT, CUID, +// and SceneDelegate hookup stripped. + +func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + + // MARK: - [Matrix flag] Debug logs + AppsFlyerLib.shared().isDebug = true + + AppsFlyerLib.shared().initialize(devKey: "sQ84wpdxRTR4RMCaE9YqS4", appId: "1512793879") + + AppsFlyerLib.shared().delegate = self + AppsFlyerLib.shared().deepLinkDelegate = self + + // Required before listener registration if app supports Universal Links + AppsFlyerLib.shared().handleLaunchOptions(launchOptions) + + // MARK: - [Matrix flag] Session-ready listener (v7 default spine) + AppsFlyerLib.shared().registerSessionReadyListener { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + + return true +} diff --git a/docs/integration-matrix/snippets/swift/scene-delegate.swift b/docs/integration-matrix/snippets/swift/scene-delegate.swift new file mode 100644 index 0000000..95764b5 --- /dev/null +++ b/docs/integration-matrix/snippets/swift/scene-delegate.swift @@ -0,0 +1,38 @@ +// +// SceneDelegate.swift +// basic_app +// +// v7 SceneDelegate flag: deep-link routing only. +// No NotificationCenter.didBecomeActive observer — registerSessionReadyListener +// is the SDK's official timing gate. See docs/integration-matrix/migration/v6-to-v7.md. +// + +import UIKit +import AppsFlyerLib + +// MARK: - [Matrix flag] SceneDelegate +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + func scene(_ scene: UIScene, + willConnectTo session: UISceneSession, + options connectionOptions: UIScene.ConnectionOptions) { + if let userActivity = connectionOptions.userActivities.first { + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) + } + for urlContext in connectionOptions.urlContexts { + AppsFlyerLib.shared().handleOpen(urlContext.url, options: nil) + } + } + + func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) + } + + func scene(_ scene: UIScene, openURLContexts URLContexts: Set) { + for context in URLContexts { + AppsFlyerLib.shared().handleOpen(context.url, options: nil) + } + } +} diff --git a/obj-c/Podfile b/obj-c/Podfile index 654db35..232e4b0 100644 --- a/obj-c/Podfile +++ b/obj-c/Podfile @@ -3,5 +3,5 @@ target 'obj-c' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! - pod 'AppsFlyerFramework' + pod 'appsflyer-apple-sdk-qa', '7.0.0.35704255' end diff --git a/obj-c/Podfile.lock b/obj-c/Podfile.lock index a7fc771..fe30710 100644 --- a/obj-c/Podfile.lock +++ b/obj-c/Podfile.lock @@ -1,18 +1,18 @@ PODS: - - AppsFlyerFramework (6.15.3): - - AppsFlyerFramework/Main (= 6.15.3) - - AppsFlyerFramework/Main (6.15.3) + - appsflyer-apple-sdk-qa (7.0.0.35704255): + - appsflyer-apple-sdk-qa/Main (= 7.0.0.35704255) + - appsflyer-apple-sdk-qa/Main (7.0.0.35704255) DEPENDENCIES: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa (= 7.0.0.35704255) SPEC REPOS: trunk: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa SPEC CHECKSUMS: - AppsFlyerFramework: ad7ff0d22aa36c7f8cc4f71a5424e19b89ccb8ae + appsflyer-apple-sdk-qa: 8305ee27b951975812a06445f781448646358698 -PODFILE CHECKSUM: f2dc8a56b8d0313063f04a2b605485a986d154c3 +PODFILE CHECKSUM: 028e9efdc50076a10df89683467bfb51aff7fa93 COCOAPODS: 1.16.2 diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/Resources/nonStrict/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/Resources/nonStrict/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/Resources/nonStrict/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/Info.plist deleted file mode 100644 index 9956b0a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/Info.plist +++ /dev/null @@ -1,107 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - tvos-arm64_x86_64-simulator - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - tvos - SupportedPlatformVariant - simulator - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - ios-arm64 - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - ios-arm64_x86_64-simulator - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - simulator - - - BinaryPath - AppsFlyerLib.framework/Versions/A/AppsFlyerLib - LibraryIdentifier - ios-arm64_x86_64-maccatalyst - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - maccatalyst - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - tvos-arm64 - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - tvos - - - BinaryPath - AppsFlyerLib.framework/Versions/A/AppsFlyerLib - LibraryIdentifier - macos-arm64_x86_64 - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - macos - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeDirectory b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeDirectory deleted file mode 100644 index f7012d6..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements deleted file mode 100644 index 4b25460..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements-1 b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 9941b2f..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeResources b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeResources deleted file mode 100644 index 01b61df..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeResources +++ /dev/null @@ -1,2248 +0,0 @@ - - - - - files - - ios-arm64/AppsFlyerLib.framework/AppsFlyerLib - - YrF8b5iLv3yCsMznravYuPjDy0s= - - ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - 26YQ/Pm+Ilp2zDJjuSccfLC+V0A= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - ios-arm64/AppsFlyerLib.framework/Info.plist - - SUXRcms9yCwAfnzJQcQA8LAZ6EU= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface - - iMeJNqlBcn4wSWoSYbcc105heA0= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc - - Gn52dLwhNXom4k91P9HHSlAPFjo= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface - - iMeJNqlBcn4wSWoSYbcc105heA0= - - ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - 0dgfM/jZO1GF0jXVzaWZQFI+Y8Y= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface - - gBZnNBYz2aEYupow29e9wPxTNdQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc - - rkRaNKF1Oee1Iby1uIIbSJDTM4o= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface - - gBZnNBYz2aEYupow29e9wPxTNdQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface - - eTOz6XNmXUiCwNP0jSwlERSPci4= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc - - 75DqHCaiZlbn1Yz0KOftB014IJg= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface - - eTOz6XNmXUiCwNP0jSwlERSPci4= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - bVkeibfsfWTtybGHkp7+PGLP5h0= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - 8x2IZYWcukBxFTZjdrmR0XLv+jU= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - 2VKjzvvY4Dmsi2DPFmqs7pesvbM= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - ex2JxlYuxQFqky3dqJcNjo7d+qo= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - Jof2V2SbxYOsGiZHkRxK/hYz/Co= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - RuaI9NCCxQv1EPEtEAkHdOXHstc= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - OnX22wWFKRSOFN1+obRynMCeyXM= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - tYsDOECerDAMaVy4hWs7wgTpCLw= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - KNjZYWnlP8y+udyRWvBiuph25L0= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - r7nKWGM1ZyXvbVy4qeGGyCsooUI= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface - - NiwGOjQecD4bKhW/WS7FH6sbhv0= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc - - Tf+hIqyQInupx8VMT+EePyh6Q3M= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface - - NiwGOjQecD4bKhW/WS7FH6sbhv0= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface - - 0zRKC30qQ32pilgMWoeCWSprDwA= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc - - BchMfq5CmBRShObJUXIdc/T6Aqw= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface - - 0zRKC30qQ32pilgMWoeCWSprDwA= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - ntUEqAxtYWH+ipQnhiWqvjVVkJg= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib - - zC6xI4RzCYI0NqkVFrfJb2GQgpQ= - - tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - 26YQ/Pm+Ilp2zDJjuSccfLC+V0A= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - tvos-arm64/AppsFlyerLib.framework/Info.plist - - iN5pnVlwK7ayQAq1q4ITq4ZYVQc= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface - - f+rVaiYkUFCA0df61t6MDqxIL1Q= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc - - AXvakhu1gsIKafoHXqzDDJqtg24= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface - - f+rVaiYkUFCA0df61t6MDqxIL1Q= - - tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - qpimpS827kFIz779XH3/w/nCXlQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - dO2oD3LHyopytf2Y5agA1GjAaYw= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - L79lHVuEXcZQ8b/onXpEgE06X84= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - apgpLdpztYHXcPhawO2GqU71RX0= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - L79lHVuEXcZQ8b/onXpEgE06X84= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - a1yMUwktSjfVrmA0kgB0AdoKRiw= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - Qx9Mp+QyhUIiOWyVscxL5UL3/jE= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - OnX22wWFKRSOFN1+obRynMCeyXM= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - ihwAluyti3Y8+4Ow2EoZ0L1DyyM= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - kjaISIeevo1ewpfAX2Jj6GODoYI= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - - files2 - - ios-arm64/AppsFlyerLib.framework/AppsFlyerLib - - hash - - YrF8b5iLv3yCsMznravYuPjDy0s= - - hash2 - - hnwXrPfM/qgubAQn5SprPsD5RxKIn+8e2Sw9ST6jL8E= - - - ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - 26YQ/Pm+Ilp2zDJjuSccfLC+V0A= - - hash2 - - vBqBeBOkrIuJsxW6P5rkVRUVBaPhYZUkYDfplgyqRUU= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - ios-arm64/AppsFlyerLib.framework/Info.plist - - hash - - SUXRcms9yCwAfnzJQcQA8LAZ6EU= - - hash2 - - lA7w5UymowYKaVQRAtNkuHeprI6oiXuGiIq0mvetWkg= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface - - hash - - iMeJNqlBcn4wSWoSYbcc105heA0= - - hash2 - - LpVq2bXLMp4Foo84LvBD8/xk839cgE10syoVPZXKEnI= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc - - hash - - Gn52dLwhNXom4k91P9HHSlAPFjo= - - hash2 - - W5HW5WcxmujmV82HcB9d7JUN0HlN8a5YVpk8vkq6uGk= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface - - hash - - iMeJNqlBcn4wSWoSYbcc105heA0= - - hash2 - - LpVq2bXLMp4Foo84LvBD8/xk839cgE10syoVPZXKEnI= - - - ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib - - symlink - Versions/Current/AppsFlyerLib - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers - - symlink - Versions/Current/Headers - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules - - symlink - Versions/Current/Modules - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources - - symlink - Versions/Current/Resources - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - hash - - 0dgfM/jZO1GF0jXVzaWZQFI+Y8Y= - - hash2 - - 8zEV9Ma1BFAYZK/tAHTSvlsNx/2mmWjCi8OdRvVJpuo= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - hash - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - hash2 - - s3bkkJu3kOu0GV4agwv8JVspCFp8hE12f3253m+G6T4= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface - - hash - - gBZnNBYz2aEYupow29e9wPxTNdQ= - - hash2 - - 6J2Wjby/H7SQ0hv/nRxKSoe578iqOoxn2UQpQz0LeZQ= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc - - hash - - rkRaNKF1Oee1Iby1uIIbSJDTM4o= - - hash2 - - wdDvmP+Z7KjMyabw/lMb2DUOdqbASqIbdU8iVulnqFY= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface - - hash - - gBZnNBYz2aEYupow29e9wPxTNdQ= - - hash2 - - 6J2Wjby/H7SQ0hv/nRxKSoe578iqOoxn2UQpQz0LeZQ= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface - - hash - - eTOz6XNmXUiCwNP0jSwlERSPci4= - - hash2 - - TfZ2F9os8tzpjpoq4xuNLb+JO4/6+r3PfajaCvRlALI= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc - - hash - - 75DqHCaiZlbn1Yz0KOftB014IJg= - - hash2 - - wG8JnedcpHCzNrU5oN6nUnQVh3nb5qdoBvexLSfYIKM= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface - - hash - - eTOz6XNmXUiCwNP0jSwlERSPci4= - - hash2 - - TfZ2F9os8tzpjpoq4xuNLb+JO4/6+r3PfajaCvRlALI= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - hash - - bVkeibfsfWTtybGHkp7+PGLP5h0= - - hash2 - - VvyYkvrJRCqfItqEawUIaEPgx+Ze7WDbhEhuDxArzsU= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current - - symlink - A - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - hash - - 8x2IZYWcukBxFTZjdrmR0XLv+jU= - - hash2 - - JVmcxseYYFevBh6VEiooXbcMqJya8CAK0cB6yDef8WE= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - hash2 - - s3bkkJu3kOu0GV4agwv8JVspCFp8hE12f3253m+G6T4= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - hash - - 2VKjzvvY4Dmsi2DPFmqs7pesvbM= - - hash2 - - 9HpqMViA1Is7YlxFf0K5ht/CuvIXV6ge1d2OL/lGmTA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - hash2 - - 4MD9uoatCkuOKH9AlR6foTTNYj+7TNc6quxamFMRTSo= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash - - ex2JxlYuxQFqky3dqJcNjo7d+qo= - - hash2 - - Gz+v10EwWzXwNQ+WpHCUSx6bcILFZ323RxNGAcPJ2cU= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - hash2 - - 4MD9uoatCkuOKH9AlR6foTTNYj+7TNc6quxamFMRTSo= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - hash2 - - i7WPdwrs5dF/nuOzDt6Sb0RI/sYkAfzjItW5R21605M= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash - - Jof2V2SbxYOsGiZHkRxK/hYz/Co= - - hash2 - - j2GPaSZglQqvyzdUdahvuxDe8T3fLkm8aLul3md381s= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - hash2 - - i7WPdwrs5dF/nuOzDt6Sb0RI/sYkAfzjItW5R21605M= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - hash - - RuaI9NCCxQv1EPEtEAkHdOXHstc= - - hash2 - - 7y8vtG3zGY0tf1kaKch0BB7hlRldCCaF3xBDQGrbrEA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - hash - - OnX22wWFKRSOFN1+obRynMCeyXM= - - hash2 - - mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - hash - - tYsDOECerDAMaVy4hWs7wgTpCLw= - - hash2 - - WpF82Hy1mD9PzRivhacj5Xg7Pyj6erw0I1Zw/YyFCfE= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - hash - - KNjZYWnlP8y+udyRWvBiuph25L0= - - hash2 - - 2UqljSKF3B8tON+4Nfvl1IiyctWUC9GlE3fycjW2wWA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - hash - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - hash2 - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - - - macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib - - symlink - Versions/Current/AppsFlyerLib - - macos-arm64_x86_64/AppsFlyerLib.framework/Headers - - symlink - Versions/Current/Headers - - macos-arm64_x86_64/AppsFlyerLib.framework/Modules - - symlink - Versions/Current/Modules - - macos-arm64_x86_64/AppsFlyerLib.framework/Resources - - symlink - Versions/Current/Resources - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - hash - - r7nKWGM1ZyXvbVy4qeGGyCsooUI= - - hash2 - - mAH6F4c3zlpiqrOpP+xCp2g3tsKaVGfnhEJEEImkBf0= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - hash - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - hash2 - - s3bkkJu3kOu0GV4agwv8JVspCFp8hE12f3253m+G6T4= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface - - hash - - NiwGOjQecD4bKhW/WS7FH6sbhv0= - - hash2 - - AHADvU4V5y9C0dQurM264MxblI/twQjMRtBkclNtZPY= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc - - hash - - Tf+hIqyQInupx8VMT+EePyh6Q3M= - - hash2 - - BLChWKxC+K8K/ZYgUe0DoR7e2hP9R35ejvfzXByuA0c= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface - - hash - - NiwGOjQecD4bKhW/WS7FH6sbhv0= - - hash2 - - AHADvU4V5y9C0dQurM264MxblI/twQjMRtBkclNtZPY= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface - - hash - - 0zRKC30qQ32pilgMWoeCWSprDwA= - - hash2 - - PZuRrwdedsE4p3o/d1iWxsD3vYcKGSmXQJ+X/dcgv5k= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc - - hash - - BchMfq5CmBRShObJUXIdc/T6Aqw= - - hash2 - - PhiuiI5wGe281SXExnI27p90C2wOLMVZLk7KJcaeQMI= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface - - hash - - 0zRKC30qQ32pilgMWoeCWSprDwA= - - hash2 - - PZuRrwdedsE4p3o/d1iWxsD3vYcKGSmXQJ+X/dcgv5k= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - hash - - ntUEqAxtYWH+ipQnhiWqvjVVkJg= - - hash2 - - E+GMWmpWRwQGQ40wsMzumk4DOgzUaTERDeM18T/oJ4Y= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current - - symlink - A - - tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib - - hash - - zC6xI4RzCYI0NqkVFrfJb2GQgpQ= - - hash2 - - T854rcapbU0Bcgde/KFtlqwQiChsQ9yjkMcof6pgU7U= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - 26YQ/Pm+Ilp2zDJjuSccfLC+V0A= - - hash2 - - vBqBeBOkrIuJsxW6P5rkVRUVBaPhYZUkYDfplgyqRUU= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - tvos-arm64/AppsFlyerLib.framework/Info.plist - - hash - - iN5pnVlwK7ayQAq1q4ITq4ZYVQc= - - hash2 - - 6KHVCE309M8SY+SN09iDWHv0vztRLm7Cndq+DW/s2ok= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface - - hash - - f+rVaiYkUFCA0df61t6MDqxIL1Q= - - hash2 - - 5jvCiIsv0a7uVvG2fB+EoHGMx9TnVbw7HgprMxUxMnI= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc - - hash - - AXvakhu1gsIKafoHXqzDDJqtg24= - - hash2 - - F66PF58duFUyjLow7Wx0UiiVZpplWXx9IIV8F5J5FYo= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface - - hash - - f+rVaiYkUFCA0df61t6MDqxIL1Q= - - hash2 - - 5jvCiIsv0a7uVvG2fB+EoHGMx9TnVbw7HgprMxUxMnI= - - - tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - hash - - qpimpS827kFIz779XH3/w/nCXlQ= - - hash2 - - 35n87mQrYW2MrQvkF5ZbvncWc9HVc8SNBmGrIKkP9WQ= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - hash2 - - s3bkkJu3kOu0GV4agwv8JVspCFp8hE12f3253m+G6T4= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - hash - - dO2oD3LHyopytf2Y5agA1GjAaYw= - - hash2 - - uWe2vWWAjtR1C0GiKpvFAxEkEf6vbdkNiziAeuvT/xc= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - hash - - L79lHVuEXcZQ8b/onXpEgE06X84= - - hash2 - - cOSE0wgXydlxxS9iArMjee5G+repqMF7orSYGd46F18= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash - - apgpLdpztYHXcPhawO2GqU71RX0= - - hash2 - - GXaXgMVijpVzqRSxGRa8A6GnfMvbWmArSH/utOYMMiQ= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash - - L79lHVuEXcZQ8b/onXpEgE06X84= - - hash2 - - cOSE0wgXydlxxS9iArMjee5G+repqMF7orSYGd46F18= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - hash - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - hash2 - - 8QNd2ehYb5yhI9CDLrfsKFZlRMrTN0C0PuiBZgvjlAQ= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash - - a1yMUwktSjfVrmA0kgB0AdoKRiw= - - hash2 - - FuWmWrMhtQE2cz17LvjUKHUHkE940WWqqYxdRcLzemI= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - hash2 - - 8QNd2ehYb5yhI9CDLrfsKFZlRMrTN0C0PuiBZgvjlAQ= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - hash - - Qx9Mp+QyhUIiOWyVscxL5UL3/jE= - - hash2 - - TAcnMsFhfR9dVA5k3i0Kica9sd0PxetuHE6aMpHprrc= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - hash - - OnX22wWFKRSOFN1+obRynMCeyXM= - - hash2 - - mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - hash - - ihwAluyti3Y8+4Ow2EoZ0L1DyyM= - - hash2 - - fCvq9YVF6r4Tyrn3zInpRVfoszh/E/HKQUP2gPYf0Qk= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - hash - - kjaISIeevo1ewpfAX2Jj6GODoYI= - - hash2 - - mzFBOkxc0d6m2AZkPJ3xBkciIG1pN6AZRzQZE6YZF/A= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - hash - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - hash2 - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeSignature b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeSignature deleted file mode 100644 index 40127e1..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeSignature and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index ebded98..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h deleted file mode 100644 index 564912a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// AppsFlyerConsent.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 14/01/2024. -// -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface AppsFlyerConsent : NSObject - -@property (nonatomic, readonly, assign) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly, assign) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly, assign) BOOL hasConsentForAdsPersonalization; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)hasConsentForDataUsage - hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization NS_DESIGNATED_INITIALIZER; -- (instancetype)initNonGDPRUser NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 1f1b87e..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,311 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e6f6ef7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,743 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.15.3 (217) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index 77bc029..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface deleted file mode 100644 index 1845db8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index 4a0d932..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface deleted file mode 100644 index 1845db8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 120000 index fd96586..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/AppsFlyerLib \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules deleted file mode 120000 index 5736f31..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib deleted file mode 100644 index c7112b2..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h deleted file mode 100644 index 564912a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// AppsFlyerConsent.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 14/01/2024. -// -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface AppsFlyerConsent : NSObject - -@property (nonatomic, readonly, assign) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly, assign) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly, assign) BOOL hasConsentForAdsPersonalization; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)hasConsentForDataUsage - hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization NS_DESIGNATED_INITIALIZER; -- (instancetype)initNonGDPRUser NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 4155b26..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,618 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#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.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h deleted file mode 100644 index e6f6ef7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,743 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.15.3 (217) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface deleted file mode 100644 index 8be461c..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc deleted file mode 100644 index 8231456..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface deleted file mode 100644 index 8be461c..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface deleted file mode 100644 index 2181b03..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc deleted file mode 100644 index da21748..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface deleted file mode 100644 index 2181b03..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 3dbbef6..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,52 +0,0 @@ - - - - - BuildMachineOSBuild - 23F79 - CFBundleDevelopmentRegion - en - CFBundleExecutable - AppsFlyerLib - CFBundleIdentifier - com.appsflyer.sdk.lib - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - AppsFlyerLib - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 6.15.3 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 21A326 - DTPlatformName - macosx - DTPlatformVersion - 14.0 - DTSDKBuild - 23A334 - DTSDKName - macosx14.0 - DTXcode - 1501 - DTXcodeBuild - 15A507 - LSMinimumSystemVersion - 10.15 - UIDeviceFamily - - 2 - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index 5c5ae63..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h deleted file mode 100644 index 564912a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// AppsFlyerConsent.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 14/01/2024. -// -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface AppsFlyerConsent : NSObject - -@property (nonatomic, readonly, assign) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly, assign) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly, assign) BOOL hasConsentForAdsPersonalization; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)hasConsentForDataUsage - hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization NS_DESIGNATED_INITIALIZER; -- (instancetype)initNonGDPRUser NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 4155b26..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,618 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#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.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e6f6ef7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,743 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.15.3 (217) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index fdbe883..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index d917e48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index b8c4290..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface deleted file mode 100644 index d917e48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index 83c07c8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 3b83434..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface deleted file mode 100644 index 83c07c8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory deleted file mode 100644 index 9d5cbec..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements deleted file mode 100644 index dbf9d61..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 5b75864..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index 23cdfbf..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,447 +0,0 @@ - - - - - files - - Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - Headers/AppsFlyerLib-Swift.h - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - Info.plist - - 2VKjzvvY4Dmsi2DPFmqs7pesvbM= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - ex2JxlYuxQFqky3dqJcNjo7d+qo= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - XFfF5hNx7L7jR7P1SELoDFcu2ig= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - Jof2V2SbxYOsGiZHkRxK/hYz/Co= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - tSI76SFrxK/soThE2vMxFtyV9v0= - - Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - - files2 - - Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - Headers/AppsFlyerLib-Swift.h - - hash - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - hash2 - - s3bkkJu3kOu0GV4agwv8JVspCFp8hE12f3253m+G6T4= - - - Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - hash2 - - 4MD9uoatCkuOKH9AlR6foTTNYj+7TNc6quxamFMRTSo= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash - - ex2JxlYuxQFqky3dqJcNjo7d+qo= - - hash2 - - Gz+v10EwWzXwNQ+WpHCUSx6bcILFZ323RxNGAcPJ2cU= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash - - i1iM4UdBHXU2lmDnJ/Czh5pfamI= - - hash2 - - 4MD9uoatCkuOKH9AlR6foTTNYj+7TNc6quxamFMRTSo= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - hash - - XFfF5hNx7L7jR7P1SELoDFcu2ig= - - hash2 - - ITtZKxUPCqDJ80LPmr8EXcmdj6Maez+cSw+nyND/WLY= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - hash2 - - i7WPdwrs5dF/nuOzDt6Sb0RI/sYkAfzjItW5R21605M= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash - - Jof2V2SbxYOsGiZHkRxK/hYz/Co= - - hash2 - - j2GPaSZglQqvyzdUdahvuxDe8T3fLkm8aLul3md381s= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash - - wn2IXmAG5n5kmUW9IvrqLMpExQs= - - hash2 - - i7WPdwrs5dF/nuOzDt6Sb0RI/sYkAfzjItW5R21605M= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - hash - - tSI76SFrxK/soThE2vMxFtyV9v0= - - hash2 - - QVcheQWN2Ja3YoJtCIHdO5JgZOAWJ49a7nEFVZIPlLg= - - - Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature deleted file mode 100644 index e69de29..0000000 diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 120000 index fd96586..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/AppsFlyerLib \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Headers b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Modules b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Modules deleted file mode 120000 index 5736f31..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Resources b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib deleted file mode 100644 index ba0bd47..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h deleted file mode 100644 index 564912a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerConsent.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// AppsFlyerConsent.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 14/01/2024. -// -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface AppsFlyerConsent : NSObject - -@property (nonatomic, readonly, assign) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly, assign) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly, assign) BOOL hasConsentForAdsPersonalization; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)hasConsentForDataUsage - hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization NS_DESIGNATED_INITIALIZER; -- (instancetype)initNonGDPRUser NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 4155b26..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,618 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#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.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h deleted file mode 100644 index e6f6ef7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,743 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.15.3 (217) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface deleted file mode 100644 index 1c49aab..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc deleted file mode 100644 index f142df7..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface deleted file mode 100644 index 1c49aab..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface deleted file mode 100644 index d428ea8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc deleted file mode 100644 index 857613e..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface deleted file mode 100644 index d428ea8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 5a247ec..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - BuildMachineOSBuild - 23F79 - CFBundleDevelopmentRegion - en - CFBundleExecutable - AppsFlyerLib - CFBundleIdentifier - com.appsflyer.sdk.lib - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - AppsFlyerLib - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 6.15.3 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 21A326 - DTPlatformName - macosx - DTPlatformVersion - 14.0 - DTSDKBuild - 23A334 - DTSDKName - macosx14.0 - DTXcode - 1501 - DTXcodeBuild - 15A507 - LSMinimumSystemVersion - 10.13 - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index 6a831b3..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h deleted file mode 100644 index 564912a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// AppsFlyerConsent.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 14/01/2024. -// -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface AppsFlyerConsent : NSObject - -@property (nonatomic, readonly, assign) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly, assign) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly, assign) BOOL hasConsentForAdsPersonalization; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)hasConsentForDataUsage - hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization NS_DESIGNATED_INITIALIZER; -- (instancetype)initNonGDPRUser NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 1f1b87e..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,311 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e6f6ef7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,743 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.15.3 (217) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index a13bfd0..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface deleted file mode 100644 index 526f18f..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc deleted file mode 100644 index cafd932..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface deleted file mode 100644 index 526f18f..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index 8f0a9c5..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h deleted file mode 100644 index 564912a..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerConsent.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// AppsFlyerConsent.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 14/01/2024. -// -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface AppsFlyerConsent : NSObject - -@property (nonatomic, readonly, assign) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly, assign) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly, assign) BOOL hasConsentForAdsPersonalization; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)hasConsentForDataUsage - hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization NS_DESIGNATED_INITIALIZER; -- (instancetype)initNonGDPRUser NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 4155b26..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,618 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#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.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e6f6ef7..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,743 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.15.3 (217) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index ff22231..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface deleted file mode 100644 index ec89281..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index 21fdb56..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index ec89281..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json deleted file mode 100644 index 4d7c1be..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json +++ /dev/null @@ -1,458 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with17completionHandlerySDys11AnyHashableVypG_yAISg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface deleted file mode 100644 index cb137c9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index ab0b807..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index cb137c9..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,10 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory deleted file mode 100644 index 1cbd3d9..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements deleted file mode 100644 index dbf9d61..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 3051ead..0000000 Binary files a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index 1ddb1e5..0000000 --- a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,447 +0,0 @@ - - - - - files - - Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - Headers/AppsFlyerConsent.h - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - Headers/AppsFlyerLib-Swift.h - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - Headers/AppsFlyerLib.h - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - Info.plist - - dO2oD3LHyopytf2Y5agA1GjAaYw= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - L79lHVuEXcZQ8b/onXpEgE06X84= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - apgpLdpztYHXcPhawO2GqU71RX0= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - L79lHVuEXcZQ8b/onXpEgE06X84= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - zA6iUNRjfQ5qgu9cCzk/AhuuWZA= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - a1yMUwktSjfVrmA0kgB0AdoKRiw= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - UIDxFROt1c+ZUYfmxAhPwsLqOLU= - - Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - - files2 - - Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - Headers/AppsFlyerConsent.h - - hash - - Bx0db1e1DLeeuq3va7QJCITQH2k= - - hash2 - - VIYU7EyY+VmJF4vKtTem3hkI/fjGfSK7lYs2zq/9D4E= - - - Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - Headers/AppsFlyerLib-Swift.h - - hash - - FOoS78OxL9Z3oz6vB1wWn0PArv0= - - hash2 - - s3bkkJu3kOu0GV4agwv8JVspCFp8hE12f3253m+G6T4= - - - Headers/AppsFlyerLib.h - - hash - - fgb2SasfXLoP5WxDkmI2ud5/2t4= - - hash2 - - JQa1x2TaMfNrM3LK8bh9N8z2IRRxKBA222KbC5pdJeM= - - - Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - hash - - L79lHVuEXcZQ8b/onXpEgE06X84= - - hash2 - - cOSE0wgXydlxxS9iArMjee5G+repqMF7orSYGd46F18= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash - - apgpLdpztYHXcPhawO2GqU71RX0= - - hash2 - - GXaXgMVijpVzqRSxGRa8A6GnfMvbWmArSH/utOYMMiQ= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash - - L79lHVuEXcZQ8b/onXpEgE06X84= - - hash2 - - cOSE0wgXydlxxS9iArMjee5G+repqMF7orSYGd46F18= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - hash - - zA6iUNRjfQ5qgu9cCzk/AhuuWZA= - - hash2 - - j5EIN56+KPtIa+mAqfWF+D9lTj1iA5DuFnyvTQFPCCE= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - hash - - jt+RNqV82PXEPsjsG7iLCtRvOgQ= - - hash2 - - i+H/fju9b0XDc8TSXvaSn/48OfztQY3hI5BlZyIAYfA= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - hash - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - hash2 - - 8QNd2ehYb5yhI9CDLrfsKFZlRMrTN0C0PuiBZgvjlAQ= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash - - a1yMUwktSjfVrmA0kgB0AdoKRiw= - - hash2 - - FuWmWrMhtQE2cz17LvjUKHUHkE940WWqqYxdRcLzemI= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash - - NGZEK6+XnTIzCfCwhIPIg2HLBpw= - - hash2 - - 8QNd2ehYb5yhI9CDLrfsKFZlRMrTN0C0PuiBZgvjlAQ= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - hash - - UIDxFROt1c+ZUYfmxAhPwsLqOLU= - - hash2 - - 7iUzwdCptJDH+DEN/lzNBJj4c98FSbyCO30nXgkqrFA= - - - Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature b/obj-c/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature deleted file mode 100644 index e69de29..0000000 diff --git a/obj-c/Pods/Manifest.lock b/obj-c/Pods/Manifest.lock index a7fc771..fe30710 100644 --- a/obj-c/Pods/Manifest.lock +++ b/obj-c/Pods/Manifest.lock @@ -1,18 +1,18 @@ PODS: - - AppsFlyerFramework (6.15.3): - - AppsFlyerFramework/Main (= 6.15.3) - - AppsFlyerFramework/Main (6.15.3) + - appsflyer-apple-sdk-qa (7.0.0.35704255): + - appsflyer-apple-sdk-qa/Main (= 7.0.0.35704255) + - appsflyer-apple-sdk-qa/Main (7.0.0.35704255) DEPENDENCIES: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa (= 7.0.0.35704255) SPEC REPOS: trunk: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa SPEC CHECKSUMS: - AppsFlyerFramework: ad7ff0d22aa36c7f8cc4f71a5424e19b89ccb8ae + appsflyer-apple-sdk-qa: 8305ee27b951975812a06445f781448646358698 -PODFILE CHECKSUM: f2dc8a56b8d0313063f04a2b605485a986d154c3 +PODFILE CHECKSUM: 028e9efdc50076a10df89683467bfb51aff7fa93 COCOAPODS: 1.16.2 diff --git a/obj-c/Pods/Pods.xcodeproj/project.pbxproj b/obj-c/Pods/Pods.xcodeproj/project.pbxproj index 23f3145..899d7c0 100644 --- a/obj-c/Pods/Pods.xcodeproj/project.pbxproj +++ b/obj-c/Pods/Pods.xcodeproj/project.pbxproj @@ -7,122 +7,139 @@ objects = { /* Begin PBXAggregateTarget section */ - B0B23938B1EBCBAD2419AB6E9D222A0B /* AppsFlyerFramework */ = { + DC8EA6044CA5863FC877AD630190FA53 /* appsflyer-apple-sdk-qa */ = { isa = PBXAggregateTarget; - buildConfigurationList = 71B9A5BD1FADAE479D403809E582EC07 /* Build configuration list for PBXAggregateTarget "AppsFlyerFramework" */; + buildConfigurationList = 4EEFA0CC69387CAA580E20FDAE78D835 /* Build configuration list for PBXAggregateTarget "appsflyer-apple-sdk-qa" */; buildPhases = ( - DB7C100E6D7A5CF954757DB8962D9B72 /* [CP] Copy XCFrameworks */, + AE5DE945C03625EC7599F5C8A0E63B92 /* [CP] Copy XCFrameworks */, ); dependencies = ( - E34636818F08D5E85E932E2A0C0ECBC4 /* PBXTargetDependency */, + 018267DC3087672373E15B51F9D6078D /* PBXTargetDependency */, ); - name = AppsFlyerFramework; + name = "appsflyer-apple-sdk-qa"; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - A570CD8F5B666ACD4E32F5854BF03454 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; - AD278C7B1186623D726B7FDCE050E530 /* Pods-obj-c-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4355F64B7AD87C3E671AB5F10A39914D /* Pods-obj-c-dummy.m */; }; - DE67D5D8AE53B104CDAA0AC0C7D18BA3 /* Pods-obj-c-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DF4D43858AF2A24098A344F88D1F80 /* Pods-obj-c-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F64303CD9D54BC4C6363BBAC6D07920D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5251E0C4CF3F9AF15A1A0F6C09403D74 /* PrivacyInfo.xcprivacy */; }; + 41FF10C2054D88FCE8B892ED05F24A22 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 9C072C663D6E73D814E430CB9E3D7E7C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 61B9254DED8F7A045F9CD5CCEAB842D0 /* PrivacyInfo.xcprivacy */; }; + A00AD531F2187C656462566A6855FF35 /* Pods-obj-c-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4355F64B7AD87C3E671AB5F10A39914D /* Pods-obj-c-dummy.m */; }; + DFE1DFCA1DC02209170B7A694600F29B /* Pods-obj-c-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DF4D43858AF2A24098A344F88D1F80 /* Pods-obj-c-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 43901673AF1B61DEF8DD194706BC5063 /* PBXContainerItemProxy */ = { + 53571F0E6DCCBA5E8BA3387C902129D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B0B23938B1EBCBAD2419AB6E9D222A0B; - remoteInfo = AppsFlyerFramework; + remoteGlobalIDString = 99045CCC9CD957A6CB0B3ABABE5AD33F; + remoteInfo = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; }; - E5EB373D690748B9823A24084AC6AB27 /* PBXContainerItemProxy */ = { + B74DBDE26DD7D22313BC662F21C3F7CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C1B7E9FCC674E977BE2D38FC2709798C; - remoteInfo = "AppsFlyerFramework-AppsFlyerLib_Privacy"; + remoteGlobalIDString = DC8EA6044CA5863FC877AD630190FA53; + remoteInfo = "appsflyer-apple-sdk-qa"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppsFlyerFramework.debug.xcconfig; sourceTree = ""; }; + 078FA116C3BD08BEA58CF0F83C345289 /* appsflyer-apple-sdk-qa-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "appsflyer-apple-sdk-qa-xcframeworks.sh"; sourceTree = ""; }; 1652183B7D6D7B4FE5187A6B9AF67743 /* Pods-obj-c.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-obj-c.debug.xcconfig"; sourceTree = ""; }; 1BA4FE2EF376CC3899468EB3EF449584 /* Pods-obj-c-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-obj-c-acknowledgements.plist"; sourceTree = ""; }; 24DF4D43858AF2A24098A344F88D1F80 /* Pods-obj-c-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-obj-c-umbrella.h"; sourceTree = ""; }; + 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "appsflyer-apple-sdk-qa.release.xcconfig"; sourceTree = ""; }; 375D80D2CF22F973EE69CDA9CFB7ACD6 /* Pods-obj-c-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-obj-c-Info.plist"; sourceTree = ""; }; 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 3FBF5F99E360E2F829E6500A317D769F /* AppsFlyerLib.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppsFlyerLib.xcframework; path = binaries/xcframework/full/AppsFlyerLib.xcframework; sourceTree = ""; }; 4355F64B7AD87C3E671AB5F10A39914D /* Pods-obj-c-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-obj-c-dummy.m"; sourceTree = ""; }; - 5251E0C4CF3F9AF15A1A0F6C09403D74 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = binaries/Resources/nonStrict/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 43D716ADFCCB6C105A6AD67F85653C1B /* ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist"; sourceTree = ""; }; + 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "appsflyer-apple-sdk-qa.debug.xcconfig"; sourceTree = ""; }; 60839EFCD0F86DB0810F7ED27BCE2D2B /* Pods-obj-c-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-obj-c-acknowledgements.markdown"; sourceTree = ""; }; - 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppsFlyerFramework.release.xcconfig; sourceTree = ""; }; - 80209B761DE4413D162228D9258A3304 /* ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist"; sourceTree = ""; }; + 61B9254DED8F7A045F9CD5CCEAB842D0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = binaries/Resources/nonStrict/PrivacyInfo.xcprivacy; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A91654FE28DEE5FD7A86A4C359FC6516 /* AppsFlyerFramework-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "AppsFlyerFramework-xcframeworks.sh"; sourceTree = ""; }; ADE7B365BD16C8D42809729DE02AFAAF /* Pods-obj-c.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-obj-c.release.xcconfig"; sourceTree = ""; }; B972EA7B5312B5885D03DED0CEBD945D /* Pods-obj-c.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-obj-c.modulemap"; sourceTree = ""; }; BECF6745C718D8C70948B16A86C82759 /* Pods-obj-c */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-obj-c"; path = Pods_obj_c.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DDEAD447247DFA15F1E4DB584614F80C /* AppsFlyerFramework-AppsFlyerLib_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "AppsFlyerFramework-AppsFlyerLib_Privacy"; path = AppsFlyerLib_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C05B7EC9678B6EFDE43118DBACC59D58 /* AppsFlyerLib.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppsFlyerLib.xcframework; path = binaries/xcframework/full/AppsFlyerLib.xcframework; sourceTree = ""; }; + C85A2D44C96F612F056A0836D7861C4B /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; path = AppsFlyerLib_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; F0B4D1E49BE0FB2C638B601ABD3FEDD7 /* Pods-obj-c-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-obj-c-resources.sh"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 2CB9409B0242EFE59A452CE54EE0BEDA /* Frameworks */ = { + 8BD4A834E55C5B4FB59006031C4E58A9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 41FF10C2054D88FCE8B892ED05F24A22 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E5C29A8504EE0D4CC6E964EBC0FA8D2D /* Frameworks */ = { + ACCDAC0B6683C38B2AB611A0B24E0B60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A570CD8F5B666ACD4E32F5854BF03454 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 039ECFF9EACC5A996C97E90862B20323 /* Main */ = { + 2CC048C9194A965B263D7A1780F0743E /* Main */ = { isa = PBXGroup; children = ( - 5C7DA19C265759D3B9E72854EF955646 /* Frameworks */, - B8FC24E218081A1370BCEA4C355D971A /* Resources */, + 76DB97569836ECE4FB02999008E964C7 /* Frameworks */, + 2FA587CF7666D248A13618D472233ED9 /* Resources */, ); name = Main; sourceTree = ""; }; - 28CDC1F6FA25BAE4D380F92E7E0D4C02 /* Support Files */ = { + 2FA587CF7666D248A13618D472233ED9 /* Resources */ = { isa = PBXGroup; children = ( - A91654FE28DEE5FD7A86A4C359FC6516 /* AppsFlyerFramework-xcframeworks.sh */, - 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */, - 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */, - 80209B761DE4413D162228D9258A3304 /* ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist */, + 61B9254DED8F7A045F9CD5CCEAB842D0 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 525D23EA4A7C4452566FB47E472D1053 /* Support Files */ = { + isa = PBXGroup; + children = ( + 078FA116C3BD08BEA58CF0F83C345289 /* appsflyer-apple-sdk-qa-xcframeworks.sh */, + 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */, + 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */, + 43D716ADFCCB6C105A6AD67F85653C1B /* ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/AppsFlyerFramework"; + path = "../Target Support Files/appsflyer-apple-sdk-qa"; sourceTree = ""; }; - 45D1C4FC78C676CE39D7D3EEB3E26E26 /* Products */ = { + 6BB7F446E8D39735944EB5BCF766C88D /* Pods */ = { isa = PBXGroup; children = ( - DDEAD447247DFA15F1E4DB584614F80C /* AppsFlyerFramework-AppsFlyerLib_Privacy */, - BECF6745C718D8C70948B16A86C82759 /* Pods-obj-c */, + 8518932A8D83B81F24492662A2FF1301 /* appsflyer-apple-sdk-qa */, ); - name = Products; + name = Pods; sourceTree = ""; }; - 5C7DA19C265759D3B9E72854EF955646 /* Frameworks */ = { + 76DB97569836ECE4FB02999008E964C7 /* Frameworks */ = { isa = PBXGroup; children = ( - 3FBF5F99E360E2F829E6500A317D769F /* AppsFlyerLib.xcframework */, + C05B7EC9678B6EFDE43118DBACC59D58 /* AppsFlyerLib.xcframework */, ); name = Frameworks; sourceTree = ""; }; + 8518932A8D83B81F24492662A2FF1301 /* appsflyer-apple-sdk-qa */ = { + isa = PBXGroup; + children = ( + 2CC048C9194A965B263D7A1780F0743E /* Main */, + 525D23EA4A7C4452566FB47E472D1053 /* Support Files */, + ); + name = "appsflyer-apple-sdk-qa"; + path = "appsflyer-apple-sdk-qa"; + sourceTree = ""; + }; 8D802E32A04142090D2F36E97DFCB0E2 /* Pods-obj-c */ = { isa = PBXGroup; children = ( @@ -148,21 +165,13 @@ name = "Targets Support Files"; sourceTree = ""; }; - B8FC24E218081A1370BCEA4C355D971A /* Resources */ = { - isa = PBXGroup; - children = ( - 5251E0C4CF3F9AF15A1A0F6C09403D74 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, - F8C7C2E6058A1A7AA06352E1A89839CF /* Pods */, - 45D1C4FC78C676CE39D7D3EEB3E26E26 /* Products */, + 6BB7F446E8D39735944EB5BCF766C88D /* Pods */, + DD9D4E90476CAA922CD062BAC0200389 /* Products */, 937DCB71106E3CCC406355A5A51DFF73 /* Targets Support Files */, ); sourceTree = ""; @@ -175,40 +184,31 @@ name = Frameworks; sourceTree = ""; }; - E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = { - isa = PBXGroup; - children = ( - 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */, - ); - name = iOS; - sourceTree = ""; - }; - EB6D1F84989BBA77CEEC0973022CB777 /* AppsFlyerFramework */ = { + DD9D4E90476CAA922CD062BAC0200389 /* Products */ = { isa = PBXGroup; children = ( - 039ECFF9EACC5A996C97E90862B20323 /* Main */, - 28CDC1F6FA25BAE4D380F92E7E0D4C02 /* Support Files */, + C85A2D44C96F612F056A0836D7861C4B /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */, + BECF6745C718D8C70948B16A86C82759 /* Pods-obj-c */, ); - name = AppsFlyerFramework; - path = AppsFlyerFramework; + name = Products; sourceTree = ""; }; - F8C7C2E6058A1A7AA06352E1A89839CF /* Pods */ = { + E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = { isa = PBXGroup; children = ( - EB6D1F84989BBA77CEEC0973022CB777 /* AppsFlyerFramework */, + 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */, ); - name = Pods; + name = iOS; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - EE52885EC5AFE49CBAA2F3335422746D /* Headers */ = { + 684F112DD962BE3CD83074CE592F5721 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DE67D5D8AE53B104CDAA0AC0C7D18BA3 /* Pods-obj-c-umbrella.h in Headers */, + DFE1DFCA1DC02209170B7A694600F29B /* Pods-obj-c-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -217,38 +217,38 @@ /* Begin PBXNativeTarget section */ 0698DDC65E8CD5765F5212C679788A61 /* Pods-obj-c */ = { isa = PBXNativeTarget; - buildConfigurationList = 4131734F9ABAC39931BE56664DF25827 /* Build configuration list for PBXNativeTarget "Pods-obj-c" */; + buildConfigurationList = BFC1FE3CC993F9961CAAA00AC0B6B7A7 /* Build configuration list for PBXNativeTarget "Pods-obj-c" */; buildPhases = ( - EE52885EC5AFE49CBAA2F3335422746D /* Headers */, - 75A29410E899FFF01673D5AF57B3CE5D /* Sources */, - E5C29A8504EE0D4CC6E964EBC0FA8D2D /* Frameworks */, - E5A007FD47EA0B23404C2395F4C50A9D /* Resources */, + 684F112DD962BE3CD83074CE592F5721 /* Headers */, + BC4D78FA068DB4394F00C06536BD5735 /* Sources */, + 8BD4A834E55C5B4FB59006031C4E58A9 /* Frameworks */, + 7D677CFE2B777A00F401D5A3D8814785 /* Resources */, ); buildRules = ( ); dependencies = ( - D085A3384428FB4C3541B7203B3EB324 /* PBXTargetDependency */, + 2CE142CCB7E8A8AFD41AB490107F8026 /* PBXTargetDependency */, ); name = "Pods-obj-c"; productName = Pods_obj_c; productReference = BECF6745C718D8C70948B16A86C82759 /* Pods-obj-c */; productType = "com.apple.product-type.framework"; }; - C1B7E9FCC674E977BE2D38FC2709798C /* AppsFlyerFramework-AppsFlyerLib_Privacy */ = { + 99045CCC9CD957A6CB0B3ABABE5AD33F /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 0BEAAA6B0E2E6FB880427C16EC0CED01 /* Build configuration list for PBXNativeTarget "AppsFlyerFramework-AppsFlyerLib_Privacy" */; + buildConfigurationList = 8D13B5EA2D12B4C81E560707B7360EEE /* Build configuration list for PBXNativeTarget "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy" */; buildPhases = ( - E32D039672D2424CEF8A39C401A0B1F1 /* Sources */, - 2CB9409B0242EFE59A452CE54EE0BEDA /* Frameworks */, - 94544A3B597A99F6BD8FA6D6D407DE04 /* Resources */, + 4DDA47618E45E5B7B44E3F4FF484148A /* Sources */, + ACCDAC0B6683C38B2AB611A0B24E0B60 /* Frameworks */, + 402CFAD22FA738785837E662D1521D75 /* Resources */, ); buildRules = ( ); dependencies = ( ); - name = "AppsFlyerFramework-AppsFlyerLib_Privacy"; + name = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; productName = AppsFlyerLib_Privacy; - productReference = DDEAD447247DFA15F1E4DB584614F80C /* AppsFlyerFramework-AppsFlyerLib_Privacy */; + productReference = C85A2D44C96F612F056A0836D7861C4B /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */; productType = "com.apple.product-type.bundle"; }; /* End PBXNativeTarget section */ @@ -271,27 +271,27 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = 45D1C4FC78C676CE39D7D3EEB3E26E26 /* Products */; + productRefGroup = DD9D4E90476CAA922CD062BAC0200389 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - B0B23938B1EBCBAD2419AB6E9D222A0B /* AppsFlyerFramework */, - C1B7E9FCC674E977BE2D38FC2709798C /* AppsFlyerFramework-AppsFlyerLib_Privacy */, + DC8EA6044CA5863FC877AD630190FA53 /* appsflyer-apple-sdk-qa */, + 99045CCC9CD957A6CB0B3ABABE5AD33F /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */, 0698DDC65E8CD5765F5212C679788A61 /* Pods-obj-c */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 94544A3B597A99F6BD8FA6D6D407DE04 /* Resources */ = { + 402CFAD22FA738785837E662D1521D75 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - F64303CD9D54BC4C6363BBAC6D07920D /* PrivacyInfo.xcprivacy in Resources */, + 9C072C663D6E73D814E430CB9E3D7E7C /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E5A007FD47EA0B23404C2395F4C50A9D /* Resources */ = { + 7D677CFE2B777A00F401D5A3D8814785 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -301,62 +301,79 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - DB7C100E6D7A5CF954757DB8962D9B72 /* [CP] Copy XCFrameworks */ = { + AE5DE945C03625EC7599F5C8A0E63B92 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/appsflyer-apple-sdk-qa/appsflyer-apple-sdk-qa-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/appsflyer-apple-sdk-qa/appsflyer-apple-sdk-qa-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/appsflyer-apple-sdk-qa/appsflyer-apple-sdk-qa-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 75A29410E899FFF01673D5AF57B3CE5D /* Sources */ = { + 4DDA47618E45E5B7B44E3F4FF484148A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AD278C7B1186623D726B7FDCE050E530 /* Pods-obj-c-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E32D039672D2424CEF8A39C401A0B1F1 /* Sources */ = { + BC4D78FA068DB4394F00C06536BD5735 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + A00AD531F2187C656462566A6855FF35 /* Pods-obj-c-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - D085A3384428FB4C3541B7203B3EB324 /* PBXTargetDependency */ = { + 018267DC3087672373E15B51F9D6078D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = AppsFlyerFramework; - target = B0B23938B1EBCBAD2419AB6E9D222A0B /* AppsFlyerFramework */; - targetProxy = 43901673AF1B61DEF8DD194706BC5063 /* PBXContainerItemProxy */; + name = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; + target = 99045CCC9CD957A6CB0B3ABABE5AD33F /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */; + targetProxy = 53571F0E6DCCBA5E8BA3387C902129D2 /* PBXContainerItemProxy */; }; - E34636818F08D5E85E932E2A0C0ECBC4 /* PBXTargetDependency */ = { + 2CE142CCB7E8A8AFD41AB490107F8026 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "AppsFlyerFramework-AppsFlyerLib_Privacy"; - target = C1B7E9FCC674E977BE2D38FC2709798C /* AppsFlyerFramework-AppsFlyerLib_Privacy */; - targetProxy = E5EB373D690748B9823A24084AC6AB27 /* PBXContainerItemProxy */; + name = "appsflyer-apple-sdk-qa"; + target = DC8EA6044CA5863FC877AD630190FA53 /* appsflyer-apple-sdk-qa */; + targetProxy = B74DBDE26DD7D22313BC662F21C3F7CF /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 0E70D5DCAFEC809AF96F93D0407FFDFE /* Release */ = { + 0C85BE14ED77B4E52B874303D250B9B5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ADE7B365BD16C8D42809729DE02AFAAF /* Pods-obj-c.release.xcconfig */; + baseConfigurationReference = 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/appsflyer-apple-sdk-qa"; + IBSC_MODULE = appsflyer_apple_sdk_qa; + INFOPLIST_FILE = "Target Support Files/appsflyer-apple-sdk-qa/ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = AppsFlyerLib_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 12F2CE2527117B2476A2B2421ADAA88D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1652183B7D6D7B4FE5187A6B9AF67743 /* Pods-obj-c.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -388,15 +405,14 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 15A89472AA17FBA07402DFF777D59682 /* Debug */ = { + 65F62F1E5CB26E1E323756A33F670351 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1652183B7D6D7B4FE5187A6B9AF67743 /* Pods-obj-c.debug.xcconfig */; + baseConfigurationReference = ADE7B365BD16C8D42809729DE02AFAAF /* Pods-obj-c.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -428,28 +444,10 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; - }; - 4A23F1203421E4CF6B79B43E8332B863 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; name = Release; }; 6A5C026ED62BBFE3380CD257EEFAEB20 /* Debug */ = { @@ -518,31 +516,33 @@ }; name = Debug; }; - 6C708079E1BEDE0845192D5464CF4B22 /* Debug */ = { + 92D35167A4E3660EC7F96DB8F42370F2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */; + baseConfigurationReference = 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppsFlyerFramework"; - IBSC_MODULE = AppsFlyerFramework; - INFOPLIST_FILE = "Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = AppsFlyerLib_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 7BDF77E73CEA4A5C3559D60310F0B882 /* Release */ = { + 97B9505AE2AC63F6607498A686612CBF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */; + baseConfigurationReference = 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppsFlyerFramework"; - IBSC_MODULE = AppsFlyerFramework; - INFOPLIST_FILE = "Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/appsflyer-apple-sdk-qa"; + IBSC_MODULE = appsflyer_apple_sdk_qa; + INFOPLIST_FILE = "Target Support Files/appsflyer-apple-sdk-qa/ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; PRODUCT_NAME = AppsFlyerLib_Privacy; SDKROOT = iphoneos; @@ -552,9 +552,9 @@ }; name = Release; }; - 99A6E2A2C1D500617DAAC7110C82BDEE /* Debug */ = { + A6EBF45ECE95AEBFEEE50D5D82AE53A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */; + baseConfigurationReference = 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -635,38 +635,38 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0BEAAA6B0E2E6FB880427C16EC0CED01 /* Build configuration list for PBXNativeTarget "AppsFlyerFramework-AppsFlyerLib_Privacy" */ = { + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6C708079E1BEDE0845192D5464CF4B22 /* Debug */, - 7BDF77E73CEA4A5C3559D60310F0B882 /* Release */, + 6A5C026ED62BBFE3380CD257EEFAEB20 /* Debug */, + E873CA97BD124B21839AF13C9BE1CD18 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4131734F9ABAC39931BE56664DF25827 /* Build configuration list for PBXNativeTarget "Pods-obj-c" */ = { + 4EEFA0CC69387CAA580E20FDAE78D835 /* Build configuration list for PBXAggregateTarget "appsflyer-apple-sdk-qa" */ = { isa = XCConfigurationList; buildConfigurations = ( - 15A89472AA17FBA07402DFF777D59682 /* Debug */, - 0E70D5DCAFEC809AF96F93D0407FFDFE /* Release */, + A6EBF45ECE95AEBFEEE50D5D82AE53A3 /* Debug */, + 92D35167A4E3660EC7F96DB8F42370F2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + 8D13B5EA2D12B4C81E560707B7360EEE /* Build configuration list for PBXNativeTarget "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6A5C026ED62BBFE3380CD257EEFAEB20 /* Debug */, - E873CA97BD124B21839AF13C9BE1CD18 /* Release */, + 0C85BE14ED77B4E52B874303D250B9B5 /* Debug */, + 97B9505AE2AC63F6607498A686612CBF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 71B9A5BD1FADAE479D403809E582EC07 /* Build configuration list for PBXAggregateTarget "AppsFlyerFramework" */ = { + BFC1FE3CC993F9961CAAA00AC0B6B7A7 /* Build configuration list for PBXNativeTarget "Pods-obj-c" */ = { isa = XCConfigurationList; buildConfigurations = ( - 99A6E2A2C1D500617DAAC7110C82BDEE /* Debug */, - 4A23F1203421E4CF6B79B43E8332B863 /* Release */, + 12F2CE2527117B2476A2B2421ADAA88D /* Debug */, + 65F62F1E5CB26E1E323756A33F670351 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist b/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist deleted file mode 100644 index 0b35988..0000000 --- a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist +++ /dev/null @@ -1,2 +0,0 @@ -${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh -${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework \ No newline at end of file diff --git a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist b/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist deleted file mode 100644 index 44f01e9..0000000 --- a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist +++ /dev/null @@ -1 +0,0 @@ -${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main/AppsFlyerLib.framework \ No newline at end of file diff --git a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh b/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh deleted file mode 100755 index f6da365..0000000 --- a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh +++ /dev/null @@ -1,145 +0,0 @@ -#!/bin/sh -set -e -set -u -set -o pipefail - -function on_error { - echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" -} -trap 'on_error $LINENO' ERR - - -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - - -variant_for_slice() -{ - case "$1" in - "AppsFlyerLib.xcframework/ios-arm64") - echo "" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst") - echo "maccatalyst" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator") - echo "simulator" - ;; - "AppsFlyerLib.xcframework/macos-arm64_x86_64") - echo "" - ;; - "AppsFlyerLib.xcframework/tvos-arm64") - echo "" - ;; - "AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator") - echo "simulator" - ;; - esac -} - -archs_for_slice() -{ - case "$1" in - "AppsFlyerLib.xcframework/ios-arm64") - echo "arm64" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst") - echo "arm64 x86_64" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator") - echo "arm64 x86_64" - ;; - "AppsFlyerLib.xcframework/macos-arm64_x86_64") - echo "arm64 x86_64" - ;; - "AppsFlyerLib.xcframework/tvos-arm64") - echo "arm64" - ;; - "AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator") - echo "arm64 x86_64" - ;; - esac -} - -copy_dir() -{ - local source="$1" - local destination="$2" - - # Use filter instead of exclude so missing patterns don't throw errors. - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" \"${source}*\" \"${destination}\"" - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" "${source}"/* "${destination}" -} - -SELECT_SLICE_RETVAL="" - -select_slice() { - local xcframework_name="$1" - xcframework_name="${xcframework_name##*/}" - local paths=("${@:2}") - # Locate the correct slice of the .xcframework for the current architectures - local target_path="" - - # Split archs on space so we can find a slice that has all the needed archs - local target_archs=$(echo $ARCHS | tr " " "\n") - - local target_variant="" - if [[ "$PLATFORM_NAME" == *"simulator" ]]; then - target_variant="simulator" - fi - if [[ ! -z ${EFFECTIVE_PLATFORM_NAME+x} && "$EFFECTIVE_PLATFORM_NAME" == *"maccatalyst" ]]; then - target_variant="maccatalyst" - fi - for i in ${!paths[@]}; do - local matched_all_archs="1" - local slice_archs="$(archs_for_slice "${xcframework_name}/${paths[$i]}")" - local slice_variant="$(variant_for_slice "${xcframework_name}/${paths[$i]}")" - for target_arch in $target_archs; do - if ! [[ "${slice_variant}" == "$target_variant" ]]; then - matched_all_archs="0" - break - fi - - if ! echo "${slice_archs}" | tr " " "\n" | grep -F -q -x "$target_arch"; then - matched_all_archs="0" - break - fi - done - - if [[ "$matched_all_archs" == "1" ]]; then - # Found a matching slice - echo "Selected xcframework slice ${paths[$i]}" - SELECT_SLICE_RETVAL=${paths[$i]} - break - fi - done -} - -install_xcframework() { - local basepath="$1" - local name="$2" - local package_type="$3" - local paths=("${@:4}") - - # Locate the correct slice of the .xcframework for the current architectures - select_slice "${basepath}" "${paths[@]}" - local target_path="$SELECT_SLICE_RETVAL" - if [[ -z "$target_path" ]]; then - echo "warning: [CP] $(basename ${basepath}): Unable to find matching slice in '${paths[@]}' for the current build architectures ($ARCHS) and platform (${EFFECTIVE_PLATFORM_NAME-${PLATFORM_NAME}})." - return - fi - local source="$basepath/$target_path" - - local destination="${PODS_XCFRAMEWORKS_BUILD_DIR}/${name}" - - if [ ! -d "$destination" ]; then - mkdir -p "$destination" - fi - - copy_dir "$source/" "$destination" - echo "Copied $source to $destination" -} - -install_xcframework "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework" "AppsFlyerFramework/Main" "framework" "ios-arm64" "ios-arm64_x86_64-maccatalyst" "ios-arm64_x86_64-simulator" - diff --git a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.debug.xcconfig b/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.debug.xcconfig deleted file mode 100644 index c71e124..0000000 --- a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.debug.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppsFlyerFramework -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.release.xcconfig b/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.release.xcconfig deleted file mode 100644 index c71e124..0000000 --- a/obj-c/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.release.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppsFlyerFramework -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/obj-c/Pods/Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist b/obj-c/Pods/Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist deleted file mode 100644 index 0722206..0000000 --- a/obj-c/Pods/Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 6.15.3 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.markdown b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.markdown index d8da5ce..c440549 100644 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.markdown +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.markdown @@ -1,7 +1,7 @@ # Acknowledgements This application makes use of the following third party libraries: -## AppsFlyerFramework +## appsflyer-apple-sdk-qa Copyright 2018 AppsFlyer Ltd. All rights reserved. Generated by CocoaPods - https://cocoapods.org diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.plist b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.plist index 38fa78d..39b757b 100644 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.plist +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-acknowledgements.plist @@ -18,7 +18,7 @@ License Proprietary Title - AppsFlyerFramework + appsflyer-apple-sdk-qa Type PSGroupSpecifier diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Debug-input-files.xcfilelist b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Debug-input-files.xcfilelist index b5a71c8..a9b1430 100644 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Debug-input-files.xcfilelist +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Debug-input-files.xcfilelist @@ -1,2 +1,2 @@ ${PODS_ROOT}/Target Support Files/Pods-obj-c/Pods-obj-c-resources.sh -${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle \ No newline at end of file +${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle \ No newline at end of file diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Release-input-files.xcfilelist b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Release-input-files.xcfilelist index b5a71c8..a9b1430 100644 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Release-input-files.xcfilelist +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources-Release-input-files.xcfilelist @@ -1,2 +1,2 @@ ${PODS_ROOT}/Target Support Files/Pods-obj-c/Pods-obj-c-resources.sh -${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle \ No newline at end of file +${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle \ No newline at end of file diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources.sh b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources.sh index 230cc85..1934ba3 100755 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources.sh +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c-resources.sh @@ -97,10 +97,10 @@ EOM esac } if [[ "$CONFIGURATION" == "Debug" ]]; then - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle" + install_resource "${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle" + install_resource "${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle" fi mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.debug.xcconfig b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.debug.xcconfig index a158700..4f35395 100644 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.debug.xcconfig +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.debug.xcconfig @@ -1,11 +1,11 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/appsflyer-apple-sdk-qa/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/appsflyer-apple-sdk-qa/Main" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -ObjC -framework "AppsFlyerLib" -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.release.xcconfig b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.release.xcconfig index a158700..4f35395 100644 --- a/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.release.xcconfig +++ b/obj-c/Pods/Target Support Files/Pods-obj-c/Pods-obj-c.release.xcconfig @@ -1,11 +1,11 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/appsflyer-apple-sdk-qa/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/appsflyer-apple-sdk-qa/Main" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -ObjC -framework "AppsFlyerLib" -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/obj-c/obj-c/AppDelegate.h b/obj-c/obj-c/AppDelegate.h index f589a4a..26686d9 100644 --- a/obj-c/obj-c/AppDelegate.h +++ b/obj-c/obj-c/AppDelegate.h @@ -7,11 +7,9 @@ #import #import + @interface AppDelegate : UIResponder @property (nonatomic, strong) NSDictionary *conversionData; - - @end - diff --git a/obj-c/obj-c/AppDelegate.m b/obj-c/obj-c/AppDelegate.m index 51b5ddf..867e82f 100644 --- a/obj-c/obj-c/AppDelegate.m +++ b/obj-c/obj-c/AppDelegate.m @@ -9,8 +9,6 @@ #import #import "DLViewController.h" - - @interface AppDelegate () @property (nonatomic, assign) BOOL deferredDeepLinkProcessedFlag; @@ -22,55 +20,48 @@ @implementation AppDelegate @synthesize conversionData; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - // Set isDebug to true to see AppsFlyer debug logs +#pragma mark - [Matrix flag] Debug logs [AppsFlyerLib shared].isDebug = YES; - - // Replace 'appsFlyerDevKey', `appleAppID` with your DevKey, Apple App ID - [AppsFlyerLib shared].appsFlyerDevKey = @"sQ84wpdxRTR4RMCaE9YqS4"; - [AppsFlyerLib shared].appleAppID = @"1512793879"; - - [[AppsFlyerLib shared] waitForATTUserAuthorizationWithTimeoutInterval:60]; - + + [[AppsFlyerLib shared] initWithDevKey:@"sQ84wpdxRTR4RMCaE9YqS4" appleAppId:@"1512793879"]; + +#pragma mark - [Matrix flag] Customer User ID (CUID) + [AppsFlyerLib shared].customerUserID = @"my user id"; + [AppsFlyerLib shared].delegate = self; [AppsFlyerLib shared].deepLinkDelegate = self; - - // Set the OneLink template id for share invite links [AppsFlyerLib shared].appInviteOneLinkID = @"H5hv"; - - // Subscribe to didBecomeActiveNotification if you use SceneDelegate or just call - // -[AppsFlyerLib start] from -[AppDelegate applicationDidBecomeActive:] - [[NSNotificationCenter defaultCenter] addObserver:self - selector:@selector(didBecomeActiveNotification) - name:UIApplicationDidBecomeActiveNotification - object:nil]; - - return YES; -} -- (void)didBecomeActiveNotification { - [[AppsFlyerLib shared] start]; - - if (@available(iOS 14, *)) { - [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { - switch (status) { - case ATTrackingManagerAuthorizationStatusDenied: - NSLog(@"AuthorizationSatus is denied"); - break; - case ATTrackingManagerAuthorizationStatusNotDetermined: - NSLog(@"AuthorizationSatus is notDetermined"); - break; - case ATTrackingManagerAuthorizationStatusRestricted: - NSLog(@"AuthorizationSatus is restricted"); - break; - case ATTrackingManagerAuthorizationStatusAuthorized: - NSLog(@"AuthorizationSatus is authorized"); - break; - default: - NSLog(@"Invalid authorization status"); - break; - } - }]; - } + // Required before registerSessionReadyListener:. In iOS 13+ scene apps, UL/URI + // cold-launch payloads are NOT in launchOptions — they arrive via connectionOptions + // in SceneDelegate, so the two paths are mutually exclusive (no double-dispatch). + [[AppsFlyerLib shared] handleLaunchOptions:launchOptions]; + +#pragma mark - [Matrix flag] Session-ready listener (v7 default spine) + [[AppsFlyerLib shared] registerSessionReadyListener:^{ +#pragma mark - [Matrix flag] ATT + if (@available(iOS 14, *)) { + [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + }]; + } else { + [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary * _Nullable dictionary, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] start failed: %@", error); + return; + } + NSLog(@"[AFSDK] start succeeded: %@", dictionary); + }]; + } + }]; + + return YES; } - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler { @@ -82,6 +73,7 @@ - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDiction [[AppsFlyerLib shared] handleOpenUrl:url options:options]; return YES; } + - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { [[AppsFlyerLib shared] handlePushNotification:userInfo]; } @@ -89,74 +81,50 @@ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(N - (void)walkToSceneWithParams:(NSString *)fruitName deepLinkData:(NSDictionary *)deepLinkData { UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; [[UIApplication sharedApplication].windows.firstObject.rootViewController dismissViewControllerAnimated:YES completion:nil]; - + NSString *destVC = [fruitName stringByAppendingString:@"_vc"]; DLViewController *newVC = [storyboard instantiateViewControllerWithIdentifier:destVC]; - - NSLog(@"[AFSDK] AppsFlyer routing to section: %@", destVC); newVC.deepLinkData = deepLinkData; - + [[UIApplication sharedApplication].windows.firstObject.rootViewController presentViewController:newVC animated:YES completion:nil]; } -#pragma mark - DeepLinkDelegate +#pragma mark - AppsFlyerDeepLinkDelegate - (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *)result { - NSString *fruitNameStr; - NSLog(@"[AFSDK] Deep link lowkehy"); switch (result.status) { case AFSDKDeepLinkResultStatusNotFound: NSLog(@"[AFSDK] Deep link not found"); return; case AFSDKDeepLinkResultStatusFailure: - NSLog(@"Error %@", result.error); + NSLog(@"[AFSDK] Deep link error: %@", result.error); return; case AFSDKDeepLinkResultStatusFound: - NSLog(@"[AFSDK] Deep link found"); break; } - + AppsFlyerDeepLink *deepLinkObj = result.deepLink; - - if ([deepLinkObj.clickEvent.allKeys containsObject:@"deep_link_sub2"]) { - NSString *referrerId = deepLinkObj.clickEvent[@"deep_link_sub2"]; - NSLog(@"[AFSDK] AppsFlyer: Referrer ID: %@", referrerId); - } else { - NSLog(@"[AFSDK] Could not extract referrerId"); - } - - NSString *deepLinkStr = [deepLinkObj toString]; - NSLog(@"[AFSDK] DeepLink data is: %@", deepLinkStr); - - if (deepLinkObj.isDeferred) { - NSLog(@"[AFSDK] This is a deferred deep link"); - if (self.deferredDeepLinkProcessedFlag) { - NSLog(@"Deferred deep link was already processed by GCD. This iteration can be skipped."); - self.deferredDeepLinkProcessedFlag = NO; - return; - } - } else { - NSLog(@"[AFSDK] This is a direct deep link"); + + if (deepLinkObj.isDeferred && self.deferredDeepLinkProcessedFlag) { + // GCD already processed this deferred deep link; skip duplicate UDL handling. + self.deferredDeepLinkProcessedFlag = NO; + return; } - - fruitNameStr = deepLinkObj.deeplinkValue; - - // If deep_link_value doesn't exist + + NSString *fruitNameStr = deepLinkObj.deeplinkValue; if (!fruitNameStr || [fruitNameStr isEqualToString:@""]) { - // Check if fruit_name exists id fruitNameValue = deepLinkObj.clickEvent[@"fruit_name"]; if ([fruitNameValue isKindOfClass:[NSString class]]) { fruitNameStr = (NSString *)fruitNameValue; } else { - NSLog(@"[AFSDK] Could not extract deep_link_value or fruit_name from deep link object with unified deep linking"); + NSLog(@"[AFSDK] Could not extract deep_link_value or fruit_name"); return; } } - - // This marks to GCD that UDL already processed this deep link. - // It is marked to both DL and DDL, but GCD is relevant only for DDL + + // Mark for GCD path so onConversionDataSuccess skips the deferred branch. self.deferredDeepLinkProcessedFlag = YES; - + [self walkToSceneWithParams:fruitNameStr deepLinkData:deepLinkObj.clickEvent]; } @@ -164,181 +132,30 @@ - (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *)result { - (void)onConversionDataSuccess:(NSDictionary *)data { self.conversionData = data; - NSLog(@"onConversionDataSuccess data:"); - for (NSString *key in data.allKeys) { - NSLog(@"%@: %@", key, data[key]); + + NSNumber *isFirstLaunch = data[@"is_first_launch"]; + if (!isFirstLaunch.boolValue) { + return; } - - NSString *status = data[@"af_status"]; - - if ([status isEqualToString:@"Non-organic"]) { - NSString *sourceID = data[@"media_source"]; - NSString *campaign = data[@"campaign"]; - NSLog(@"[AFSDK] This is a Non-Organic install. Media source: %@ Campaign: %@", sourceID, campaign); - } else { - NSLog(@"[AFSDK] This is an organic install."); + + if (self.deferredDeepLinkProcessedFlag) { + // UDL already processed this deferred deep link; skip GCD path. + self.deferredDeepLinkProcessedFlag = NO; + return; } - - NSNumber *isFirstLaunch = data[@"is_first_launch"]; - - if (isFirstLaunch.boolValue) { - NSLog(@"[AFSDK] First Launch"); - - if (self.deferredDeepLinkProcessedFlag) { - NSLog(@"Deferred deep link was already processed by UDL. The DDL processing in GCD can be skipped."); - self.deferredDeepLinkProcessedFlag = NO; - return; - } - - self.deferredDeepLinkProcessedFlag = YES; - - NSString *fruitNameStr = data[@"deep_link_value"]; - - if (!fruitNameStr) { - fruitNameStr = data[@"fruit_name"]; - } - - if (!fruitNameStr) { - NSLog(@"Could not extract deep_link_value or fruit_name from deep link object using conversion data"); - return; - } - - NSLog(@"This is a deferred deep link opened using conversion data"); - [self walkToSceneWithParams:fruitNameStr deepLinkData:data]; - } else { - NSLog(@"[AFSDK] Not First Launch"); + self.deferredDeepLinkProcessedFlag = YES; + + NSString *fruitNameStr = data[@"deep_link_value"] ?: data[@"fruit_name"]; + if (!fruitNameStr) { + NSLog(@"[AFSDK] Could not extract deep_link_value or fruit_name from conversion data"); + return; } + + [self walkToSceneWithParams:fruitNameStr deepLinkData:data]; } - (void)onConversionDataFail:(NSError *)error { - NSLog(@"[AFSDK] %@", error); + NSLog(@"[AFSDK] onConversionDataFail: %@", error); } - - - @end - - - - - - - - - - -// -//@interface AppDelegate () -// -//@end -// -//@implementation AppDelegate -// -//-(void) sendLaunch: (UIApplication *)application { -// NSLog(@"AAA in sendLaunch()"); -// [[AppsFlyerLib shared] start]; -//} -// -// -// -//-(void)onConversionDataSuccess:(NSDictionary*) installData { -// // Business logic for Non-organic install scenario is invoked -// NSLog(@"AAA in onConversionDataSuccess()"); -// id status = [installData objectForKey:@"af_status"]; -// if([status isEqualToString:@"Non-organic"]) { -// id sourceID = [installData objectForKey:@"media_source"]; -// id campaign = [installData objectForKey:@"campaign"]; -// NSLog(@"This is a Non-organic install. Media source: %@ Campaign: %@",sourceID,campaign); -// } -// -// else if([status isEqualToString:@"Organic"]) { -// // Business logic for Organic install scenario is invoked -// NSLog(@"This is an Organic install."); -// } -// -//} -// -// -//- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { -// // Override point for customization after application launch. -// [[AppsFlyerLib shared] setAppsFlyerDevKey:@"sQ84wpdxRTR4RMCaE9YqS4"]; -// [[AppsFlyerLib shared] setAppleAppID:@"1512793879"]; -// [[AppsFlyerLib shared] start]; -// NSLog(@"AAA in didFinishLaunchingWithOptions(). started shared instance"); -// return YES; -//} -// -//- (void)applicationDidBecomeActive:(UIApplication *)application { -// [[AppsFlyerLib shared] start]; -// NSLog(@"aaa from applicationDidBecomeActive"); -// if (@available(iOS 14, *)) { -// [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { -// switch (status) { -// case ATTrackingManagerAuthorizationStatusDenied: -// NSLog(@"AuthorizationSatus is denied"); -// break; -// case ATTrackingManagerAuthorizationStatusNotDetermined: -// NSLog(@"AuthorizationSatus is notDetermined"); -// break; -// case ATTrackingManagerAuthorizationStatusRestricted: -// NSLog(@"AuthorizationSatus is restricted"); -// break; -// case ATTrackingManagerAuthorizationStatusAuthorized: -// NSLog(@"AuthorizationSatus is authorized"); -// break; -// } -// }]; -// } -//} -// -//- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler { -// [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; -// return YES; -//} -// -//// Open URI-scheme for iOS 9 and above -//- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary *)options { -// [[AppsFlyerLib shared] handleOpenUrl:url options:options]; -// return YES; -//} -//// Report Push Notification attribution data for re-engagements -//- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { -// [[AppsFlyerLib shared] handlePushNotification:userInfo]; -//} -//// User logic -//- (void)walkToSceneWithParamsWithFruitName:(NSString *)fruitName deepLinkData:(NSDictionary *)deepLinkData { -// UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; -// UIViewController *rootViewController = [UIApplication sharedApplication].windows.firstObject.rootViewController; -// [rootViewController dismissViewControllerAnimated:YES completion:nil]; -// -// NSString *destVC = [NSString stringWithFormat:@"%@_vc", fruitName]; -// DLViewController *newVC = [storyboard instantiateViewControllerWithIdentifier:destVC]; -// -// if (newVC != nil) { -// NSLog(@"[AFSDK] AppsFlyer routing to section: %@", destVC); -// newVC.deepLinkData = deepLinkData; -// [rootViewController presentViewController:newVC animated:YES completion:nil]; -// } else { -// NSLog(@"[AFSDK] AppsFlyer: could not find section: %@", destVC); -// } -//} -//#pragma mark - UISceneSession lifecycle -// -// -//- (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options { -// // Called when a new scene session is being created. -// // Use this method to select a configuration to create the new scene with. -// return [[UISceneConfiguration alloc] initWithName:@"Default Configuration" sessionRole:connectingSceneSession.role]; -//} -// -// -// -//- (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet *)sceneSessions { -// // Called when the user discards a scene session. -// // If any sessions were discarded while the application was not running, this will be called shortly after application:§. -// // Use this method to release any resources that were specific to the discarded scenes, as they will not return. -//} -// -// -//@end diff --git a/obj-c/obj-c/ApplesViewController.h b/obj-c/obj-c/ApplesViewController.h index 26de85e..bb361cd 100644 --- a/obj-c/obj-c/ApplesViewController.h +++ b/obj-c/obj-c/ApplesViewController.h @@ -3,10 +3,4 @@ @interface ApplesViewController : DLViewController -@property (strong, nonatomic) NSDictionary *deepLinkData; - -- (NSAttributedString *)attributionDataToString:(NSDictionary *)data; -- (NSString *)getFruitAmount:(NSDictionary *)data; - - @end diff --git a/obj-c/obj-c/ApplesViewController.m b/obj-c/obj-c/ApplesViewController.m index 970af02..89e514a 100644 --- a/obj-c/obj-c/ApplesViewController.m +++ b/obj-c/obj-c/ApplesViewController.m @@ -11,12 +11,11 @@ @implementation ApplesViewController - (void)viewDidLoad { [super viewDidLoad]; - // Do any additional setup after loading the view. if (self.deepLinkData != nil) { - self.applesDlTextView.attributedText = [self attributionDataToString:self.deepLinkData]; + self.applesDlTextView.attributedText = [self attributionDataToStringWithData:self.deepLinkData]; self.applesDlTextView.textColor = UIColor.labelColor; - self.fruitAmount.text = [self getFruitAmount:self.deepLinkData]; + self.fruitAmount.text = [self getFruitAmountWithData:self.deepLinkData]; } } diff --git a/obj-c/obj-c/BananasViewController.h b/obj-c/obj-c/BananasViewController.h index 63d8024..1a43d31 100644 --- a/obj-c/obj-c/BananasViewController.h +++ b/obj-c/obj-c/BananasViewController.h @@ -3,9 +3,4 @@ @interface BananasViewController : DLViewController -@property (strong, nonatomic) NSDictionary *deepLinkData; - -- (NSAttributedString *)attributionDataToString:(NSDictionary *)data; -- (NSString *)getFruitAmount:(NSDictionary *)data; - @end diff --git a/obj-c/obj-c/BananasViewController.m b/obj-c/obj-c/BananasViewController.m index 700914e..85d2a45 100644 --- a/obj-c/obj-c/BananasViewController.m +++ b/obj-c/obj-c/BananasViewController.m @@ -11,12 +11,11 @@ @implementation BananasViewController - (void)viewDidLoad { [super viewDidLoad]; - // Do any additional setup after loading the view. if (self.deepLinkData != nil) { - self.bananasDlTextView.attributedText = [self attributionDataToString:self.deepLinkData]; + self.bananasDlTextView.attributedText = [self attributionDataToStringWithData:self.deepLinkData]; self.bananasDlTextView.textColor = UIColor.labelColor; - self.fruitAmount.text = [self getFruitAmount:self.deepLinkData]; + self.fruitAmount.text = [self getFruitAmountWithData:self.deepLinkData]; } } diff --git a/obj-c/obj-c/DLViewController.h b/obj-c/obj-c/DLViewController.h index 89edf8a..8c85339 100644 --- a/obj-c/obj-c/DLViewController.h +++ b/obj-c/obj-c/DLViewController.h @@ -15,6 +15,8 @@ NS_ASSUME_NONNULL_BEGIN @property (nonatomic, copy) NSString *fruitAmountStr; - (void)copyShareInviteLinkWithFruitName:(NSString *)fruitName; +- (NSMutableAttributedString *)attributionDataToStringWithData:(NSDictionary *)data; +- (NSString *)getFruitAmountWithData:(NSDictionary *)data; @end NS_ASSUME_NONNULL_END diff --git a/obj-c/obj-c/DLViewController.m b/obj-c/obj-c/DLViewController.m index f389dcb..d122ffd 100644 --- a/obj-c/obj-c/DLViewController.m +++ b/obj-c/obj-c/DLViewController.m @@ -1,24 +1,8 @@ #import "DLViewController.h" #import -@interface DLViewController () - -//@property (nonatomic, strong) NSDictionary *deepLinkData; -//@property (nonatomic, copy) NSString *fruitAmountStr; - -- (void)copyShareInviteLinkWithFruitName:(NSString *)fruitName; -@end - -//#import "AppsFlyerLib/AppsFlyerLib.h" - - - @implementation DLViewController -- (void)viewDidLoad { - [super viewDidLoad]; -} - - (NSMutableAttributedString *)attributionDataToStringWithData:(NSDictionary *)data { NSMutableAttributedString *newString = [[NSMutableAttributedString alloc] init]; NSDictionary *boldAttribute = @{NSFontAttributeName: [UIFont fontWithName:@"Avenir Next Bold" size:18.0]}; @@ -27,8 +11,6 @@ - (NSMutableAttributedString *)attributionDataToStringWithData:(NSDictionary *sortedKeys = [data.allKeys sortedArrayUsingSelector:@selector(compare:)]; for (NSString *key in sortedKeys) { - NSLog(@"ViewController %@ : %@", key, data[key] ?: @"null"); - NSAttributedString *boldKeyStr = [[NSAttributedString alloc] initWithString:key attributes:boldAttribute]; [newString appendAttributedString:boldKeyStr]; @@ -69,7 +51,7 @@ - (void)showToastWithMessage:(NSString *)message font:(UIFont *)font { } - (void)copyShareInviteLinkWithFruitName:(NSString *)fruitName { - [AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:^AppsFlyerLinkGenerator *(AppsFlyerLinkGenerator *generator) { + [AppsFlyerShareInviteHelper generateInviteLinkWithLinkGenerator:^AppsFlyerLinkGenerator *(AppsFlyerLinkGenerator *generator) { [generator addParameterValue:fruitName forKey:@"deep_link_value"]; [generator addParameterValue:self.fruitAmountStr forKey:@"deep_link_sub1"]; [generator addParameterValue:@"THIS_USER_ID" forKey:@"deep_link_sub2"]; @@ -79,21 +61,23 @@ - (void)copyShareInviteLinkWithFruitName:(NSString *)fruitName { [AppsFlyerLib shared].appInviteOneLinkID = @"H5hv"; // [[AppsFlyerLib shared]setAppInviteOneLink]; return generator; - } completionHandler:^(NSURL *url) { - if (url) { - // Copy url to clipboard - [UIPasteboard generalPasteboard].string = url.absoluteString; - // Show toast to let the user know the link has been copied to clipboard - dispatch_async(dispatch_get_main_queue(), ^{ - [self showToastWithMessage:@"Link copied to clipboard" font:[UIFont systemFontOfSize:12.0]]; - }); - - [AppsFlyerShareInviteHelper logInvite:@"mobile_share" - parameters:@{@"referrerId": @"THIS_USER_ID", - @"campaign": @"share_invite"}]; - } else { - NSLog(@"url is nil"); + } completionHandler:^(NSURL * _Nullable url, NSError * _Nullable error) { + if (error) { + NSLog(@"[AFSDK] generateInviteLink failed: %@", error); + return; + } + if (!url) { + NSLog(@"[AFSDK] generateInviteLink returned nil URL"); + return; } + [UIPasteboard generalPasteboard].string = url.absoluteString; + dispatch_async(dispatch_get_main_queue(), ^{ + [self showToastWithMessage:@"Link copied to clipboard" font:[UIFont systemFontOfSize:12.0]]; + }); + + [AppsFlyerShareInviteHelper logInvite:@"mobile_share" + eventParameters:@{@"referrerId": @"THIS_USER_ID", + @"campaign": @"share_invite"}]; }]; } diff --git a/obj-c/obj-c/Info.plist b/obj-c/obj-c/Info.plist index 81ed29b..689f890 100644 --- a/obj-c/obj-c/Info.plist +++ b/obj-c/obj-c/Info.plist @@ -2,6 +2,8 @@ + NSUserTrackingUsageDescription + This identifier will be used to deliver personalized ads to you. UIApplicationSceneManifest UIApplicationSupportsMultipleScenes diff --git a/obj-c/obj-c/PeachesViewController.h b/obj-c/obj-c/PeachesViewController.h index a4ed298..923d442 100644 --- a/obj-c/obj-c/PeachesViewController.h +++ b/obj-c/obj-c/PeachesViewController.h @@ -3,9 +3,4 @@ @interface PeachesViewController : DLViewController -@property (strong, nonatomic) NSDictionary *deepLinkData; - -- (NSAttributedString *)attributionDataToString:(NSDictionary *)data; -- (NSString *)getFruitAmount:(NSDictionary *)data; - @end diff --git a/obj-c/obj-c/PeachesViewController.m b/obj-c/obj-c/PeachesViewController.m index 0ac18b9..98384c9 100644 --- a/obj-c/obj-c/PeachesViewController.m +++ b/obj-c/obj-c/PeachesViewController.m @@ -11,12 +11,11 @@ @implementation PeachesViewController - (void)viewDidLoad { [super viewDidLoad]; - // Do any additional setup after loading the view. -// + if (self.deepLinkData != nil) { - self.peachesDlTextView.attributedText = [self attributionDataToString:self.deepLinkData]; + self.peachesDlTextView.attributedText = [self attributionDataToStringWithData:self.deepLinkData]; self.peachesDlTextView.textColor = UIColor.labelColor; - self.fruitAmount.text = [self getFruitAmount:self.deepLinkData]; + self.fruitAmount.text = [self getFruitAmountWithData:self.deepLinkData]; } } diff --git a/obj-c/obj-c/SceneDelegate.m b/obj-c/obj-c/SceneDelegate.m index 4673572..718093d 100644 --- a/obj-c/obj-c/SceneDelegate.m +++ b/obj-c/obj-c/SceneDelegate.m @@ -8,84 +8,29 @@ #import "SceneDelegate.h" #import -@interface SceneDelegate () - -@end - +#pragma mark - [Matrix flag] SceneDelegate @implementation SceneDelegate - -- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions { - // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. - // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. - // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). - - // Processing Universal Link from the killed state - NSUserActivity *userActivity = connectionOptions.userActivities.anyObject; - if (userActivity) { - [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; - } else { - UIOpenURLContext *urlContext = connectionOptions.URLContexts.anyObject; - if (urlContext) { - NSURL *url = urlContext.URL; - [[AppsFlyerLib shared] handleOpenUrl:url options:nil]; - } - } - - // Use this method to optionally configure and attach the UIWindow 'window' to the provided UIWindowScene 'scene'. - // Ensure the window property is initialized and attached if needed. - if (![scene isKindOfClass:[UIWindowScene class]]) { - return; - } +- (void)scene:(UIScene *)scene + willConnectToSession:(UISceneSession *)session + options:(UISceneConnectionOptions *)connectionOptions { + NSUserActivity *userActivity = connectionOptions.userActivities.anyObject; + if (userActivity) { + [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; + } + for (UIOpenURLContext *urlContext in connectionOptions.URLContexts) { + [[AppsFlyerLib shared] handleOpenUrl:urlContext.URL options:nil]; + } } - (void)scene:(UIScene *)scene continueUserActivity:(NSUserActivity *)userActivity { - // Universal Link - Background -> foreground [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:nil]; } - (void)scene:(UIScene *)scene openURLContexts:(NSSet *)URLContexts { - // URI scheme - Background -> foreground - UIOpenURLContext *urlContext = URLContexts.anyObject; - if (urlContext) { - NSURL *url = urlContext.URL; - [[AppsFlyerLib shared] handleOpenUrl:url options:nil]; + for (UIOpenURLContext *urlContext in URLContexts) { + [[AppsFlyerLib shared] handleOpenUrl:urlContext.URL options:nil]; } } -- (void)sceneDidDisconnect:(UIScene *)scene { - // Called as the scene is being released by the system. - // This occurs shortly after the scene enters the background, or when its session is discarded. - // Release any resources associated with this scene that can be re-created the next time the scene connects. - // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). -} - - -- (void)sceneDidBecomeActive:(UIScene *)scene { - // Called when the scene has moved from an inactive state to an active state. - // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. -} - - -- (void)sceneWillResignActive:(UIScene *)scene { - // Called when the scene will move from an active state to an inactive state. - // This may occur due to temporary interruptions (ex. an incoming phone call). -} - - -- (void)sceneWillEnterForeground:(UIScene *)scene { - // Called as the scene transitions from the background to the foreground. - // Use this method to undo the changes made on entering the background. -} - - -- (void)sceneDidEnterBackground:(UIScene *)scene { - // Called as the scene transitions from the foreground to the background. - // Use this method to save data, release shared resources, and store enough scene-specific state information - // to restore the scene back to its current state. -} - - - - @end diff --git a/swift/basic_app/Podfile b/swift/basic_app/Podfile index 2e74f74..abebcc5 100644 --- a/swift/basic_app/Podfile +++ b/swift/basic_app/Podfile @@ -5,6 +5,6 @@ target 'basic_app' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! -pod 'AppsFlyerFramework' +pod 'appsflyer-apple-sdk-qa', '7.0.0.35704255' end diff --git a/swift/basic_app/Podfile.lock b/swift/basic_app/Podfile.lock index 1e870f3..17fd80a 100644 --- a/swift/basic_app/Podfile.lock +++ b/swift/basic_app/Podfile.lock @@ -1,18 +1,18 @@ PODS: - - AppsFlyerFramework (6.16.2): - - AppsFlyerFramework/Main (= 6.16.2) - - AppsFlyerFramework/Main (6.16.2) + - appsflyer-apple-sdk-qa (7.0.0.35704255): + - appsflyer-apple-sdk-qa/Main (= 7.0.0.35704255) + - appsflyer-apple-sdk-qa/Main (7.0.0.35704255) DEPENDENCIES: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa (= 7.0.0.35704255) SPEC REPOS: trunk: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa SPEC CHECKSUMS: - AppsFlyerFramework: fe5303bffcdfd941d5f570c2d21eaaea982e7bdc + appsflyer-apple-sdk-qa: 8305ee27b951975812a06445f781448646358698 -PODFILE CHECKSUM: e4c2ca11293539348e2518eeeb12725441e073d7 +PODFILE CHECKSUM: 3eefdf4366c8e6195a700781ebea23be01e62b68 COCOAPODS: 1.16.2 diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/Resources/nonStrict/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/Resources/nonStrict/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/Resources/nonStrict/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/Info.plist deleted file mode 100644 index 1cd1edb..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/Info.plist +++ /dev/null @@ -1,107 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - AppsFlyerLib.framework/Versions/A/AppsFlyerLib - LibraryIdentifier - ios-arm64_x86_64-maccatalyst - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - maccatalyst - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - tvos-arm64_x86_64-simulator - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - tvos - SupportedPlatformVariant - simulator - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - ios-arm64 - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - BinaryPath - AppsFlyerLib.framework/Versions/A/AppsFlyerLib - LibraryIdentifier - macos-arm64_x86_64 - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - macos - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - tvos-arm64 - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - tvos - - - BinaryPath - AppsFlyerLib.framework/AppsFlyerLib - LibraryIdentifier - ios-arm64_x86_64-simulator - LibraryPath - AppsFlyerLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - simulator - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeDirectory b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeDirectory deleted file mode 100644 index 372a479..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements deleted file mode 100644 index 4b25460..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements-1 b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 6e08edd..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeResources b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeResources deleted file mode 100644 index 92c46e2..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeResources +++ /dev/null @@ -1,2158 +0,0 @@ - - - - - files - - ios-arm64/AppsFlyerLib.framework/AppsFlyerLib - - M/1E5NfUoVY7/jLhxZrL1YZ4eHE= - - ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - FyHavLzfPzrJLtHZfClI6Yfi9pU= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - ios-arm64/AppsFlyerLib.framework/Info.plist - - LGYmCBmVkPfsdJrIW+Ubmf7n8Qo= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface - - PWgAZ9P+aihfyE2l+zfRrOk3xEQ= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc - - qX+vB3HYjhfeR+yYvTyWlQkOwZc= - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface - - PWgAZ9P+aihfyE2l+zfRrOk3xEQ= - - ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - /5cWL3yXvv6LjXFUQSlqfuLWhpU= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - +3efZHwff+klT9+WxpNLSXo1yto= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface - - VOUQ/lWlA8/bJ911lLvDHK3U2gM= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc - - 5UPC6XX2gy8G07NGFlCVurGlB6A= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface - - VOUQ/lWlA8/bJ911lLvDHK3U2gM= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface - - UB4oT/i3xPl+oi8COyhZgkYixhc= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc - - iOcM1DMbtCLp0RucjdqB5EQS1cQ= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface - - UB4oT/i3xPl+oi8COyhZgkYixhc= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - TqHzEChNEf03doG+GFOsdlb3/7U= - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - sYe8a+VcqMzpvZFtubRfC3oRPAE= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - +3efZHwff+klT9+WxpNLSXo1yto= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - 6E9F4RTZq+03xhfNWYVAflvfmsI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - +Ousx3RR44wg2etzzliwvXbWgpE= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - /gtIRVFsHXn3J452tiAe9T8yl7w= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - +Ousx3RR44wg2etzzliwvXbWgpE= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - cl0bUKOx4CWj8MsgtvNBuYC+6g0= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - M7N6iGmROmUQ++EW9AGxGGfOIXg= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - OnX22wWFKRSOFN1+obRynMCeyXM= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - t52zQswEbkcI93hgth9Yg1a+uFE= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - DuXy3h0xlTlc1bTePwfOZElKvQM= - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - 4BLK/svWXSqeL4+Ze27os6xcXhs= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - +3efZHwff+klT9+WxpNLSXo1yto= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface - - VE1A5JvKaCecxMxoqNeoRy+KtjI= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc - - y8Vx/MXY6l/NIgQ7tbUzkcJzhqA= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface - - VE1A5JvKaCecxMxoqNeoRy+KtjI= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface - - HhbXgSUwojVQHWxZFZYUsTQAquo= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc - - 0U0CeuicBX5DvxmYhbFQGxFgLuw= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface - - HhbXgSUwojVQHWxZFZYUsTQAquo= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - +HcyT7SI+/KwGV6+bZ45sCb8Q+E= - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib - - cHh5Y7mqjlV+gj+Hs9mMJbvI3L0= - - tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - FyHavLzfPzrJLtHZfClI6Yfi9pU= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - tvos-arm64/AppsFlyerLib.framework/Info.plist - - d/28mfFMcEcm99F7CZ+/cXRlXr4= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface - - rauPHghxkpHCbMiJrrfA2yfmQJA= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc - - L4khRMwr0ufxiRF969FEacJpKVM= - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface - - rauPHghxkpHCbMiJrrfA2yfmQJA= - - tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - N7zyMQ4kVyrtFeygoEagLTeH+Ws= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - +3efZHwff+klT9+WxpNLSXo1yto= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - ngtwxefRfuB5qCfcX2RqdkgBKxQ= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - auLSYrRIxjkBMGw+CAgTbvLd9yU= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - vv8hIe9a03+ijni0HM6lhydHn1g= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - p02wR7ceoBxMTNSavo/asC1evU0= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - OnX22wWFKRSOFN1+obRynMCeyXM= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - SSSzjC7X9eBlmzD7hH416c6lQRo= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - 6cajJzovVO8P6roJ9I9h5vLqsSs= - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - - files2 - - ios-arm64/AppsFlyerLib.framework/AppsFlyerLib - - hash - - M/1E5NfUoVY7/jLhxZrL1YZ4eHE= - - hash2 - - UFlz0OEAAPu+hD5uGWnYWDWDndHT9K0iyIuqbi3gEoA= - - - ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - FyHavLzfPzrJLtHZfClI6Yfi9pU= - - hash2 - - jvaOU8Bpn5KvyFIaY8I/ACxn+1Fmpt4W0XVufQuwHzI= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - ios-arm64/AppsFlyerLib.framework/Info.plist - - hash - - LGYmCBmVkPfsdJrIW+Ubmf7n8Qo= - - hash2 - - mYfcehlikHE1BBBf4eRX6weObx2qWQd9x2ilfHLSsOY= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface - - hash - - PWgAZ9P+aihfyE2l+zfRrOk3xEQ= - - hash2 - - lqxGzgL4qwfaxbecAhET5Sqh1P/juiTEYG4J3NIzLdM= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc - - hash - - qX+vB3HYjhfeR+yYvTyWlQkOwZc= - - hash2 - - zVKGqjhPlCDc1A/esa6n2yobumY9bkWtxA6Y1E+8OiI= - - - ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface - - hash - - PWgAZ9P+aihfyE2l+zfRrOk3xEQ= - - hash2 - - lqxGzgL4qwfaxbecAhET5Sqh1P/juiTEYG4J3NIzLdM= - - - ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib - - symlink - Versions/Current/AppsFlyerLib - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers - - symlink - Versions/Current/Headers - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules - - symlink - Versions/Current/Modules - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources - - symlink - Versions/Current/Resources - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - hash - - /5cWL3yXvv6LjXFUQSlqfuLWhpU= - - hash2 - - c21VXeOcMo4UlwKWLI+pa1CyQ03bkDytLIgl96Xbdh8= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - hash - - +3efZHwff+klT9+WxpNLSXo1yto= - - hash2 - - qnssTwJrZtIDeyMBE1BfsXnl8XS/fgn8s6Let6FfKMw= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface - - hash - - VOUQ/lWlA8/bJ911lLvDHK3U2gM= - - hash2 - - pcV54b2KF3PfRnEe0zo02n+rt6z9tkOp41OQm+cuQ5c= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc - - hash - - 5UPC6XX2gy8G07NGFlCVurGlB6A= - - hash2 - - q6VbcALJy07vHHa2RVyDXAywhVVsUv+Zvm/HzsUGiCQ= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface - - hash - - VOUQ/lWlA8/bJ911lLvDHK3U2gM= - - hash2 - - pcV54b2KF3PfRnEe0zo02n+rt6z9tkOp41OQm+cuQ5c= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface - - hash - - UB4oT/i3xPl+oi8COyhZgkYixhc= - - hash2 - - jyo9B8YEBBWrbtYldC3/jdqlmIiNQFlRXG5eEoaw1BQ= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc - - hash - - iOcM1DMbtCLp0RucjdqB5EQS1cQ= - - hash2 - - 4wX5/yFQPhb1Be1hU7jGnJKQv7q8OHYXTeua8Dw9oBs= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface - - hash - - UB4oT/i3xPl+oi8COyhZgkYixhc= - - hash2 - - jyo9B8YEBBWrbtYldC3/jdqlmIiNQFlRXG5eEoaw1BQ= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - hash - - TqHzEChNEf03doG+GFOsdlb3/7U= - - hash2 - - IlB/hZuXnC9FgWZdBOHhCLKjoDwv7wg0r8xmO0xCV4I= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current - - symlink - A - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - hash - - sYe8a+VcqMzpvZFtubRfC3oRPAE= - - hash2 - - VIwEFtaItZMUgr5gfcvCV7qktiQY7rmju8qyGO3UXz8= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - +3efZHwff+klT9+WxpNLSXo1yto= - - hash2 - - qnssTwJrZtIDeyMBE1BfsXnl8XS/fgn8s6Let6FfKMw= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - hash - - 6E9F4RTZq+03xhfNWYVAflvfmsI= - - hash2 - - 9+B8C/x9b47lgEw07gDa6eAhmHPN4IroHDngc11SFso= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash - - +Ousx3RR44wg2etzzliwvXbWgpE= - - hash2 - - MMopU7+L5nNcnI7aDgqx13WsEX3Sik+LWjxdD+P3wtI= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash - - /gtIRVFsHXn3J452tiAe9T8yl7w= - - hash2 - - iCg5XHUpdT54X15ZhYFvucX2KzKUEbF7MIM38w1Jzh4= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash - - +Ousx3RR44wg2etzzliwvXbWgpE= - - hash2 - - MMopU7+L5nNcnI7aDgqx13WsEX3Sik+LWjxdD+P3wtI= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - hash2 - - xAYn3VIzzW+1YLhXIaP+eGxo9qF7imZy1RX3VjZrLXY= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash - - cl0bUKOx4CWj8MsgtvNBuYC+6g0= - - hash2 - - tnwMjbnn/fkmlG43z2c8/rYNatQJ9s/ztlyg72JbY7Q= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - hash2 - - xAYn3VIzzW+1YLhXIaP+eGxo9qF7imZy1RX3VjZrLXY= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - hash - - M7N6iGmROmUQ++EW9AGxGGfOIXg= - - hash2 - - wYhFtLDehPoZ3HiT9pg0qymWXDWVzl06nxmi6t8O6J0= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - hash - - OnX22wWFKRSOFN1+obRynMCeyXM= - - hash2 - - mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - hash - - t52zQswEbkcI93hgth9Yg1a+uFE= - - hash2 - - 5mJqysY5Y3Dkkx8H7MGEvxi50pw8Qyt6OaajpFPHO4k= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - hash - - DuXy3h0xlTlc1bTePwfOZElKvQM= - - hash2 - - n7BhfR01IGcBMW2FgnVg5eW874FWDWdxqzZxSdTWHQA= - - - ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - hash - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - hash2 - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - - - macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib - - symlink - Versions/Current/AppsFlyerLib - - macos-arm64_x86_64/AppsFlyerLib.framework/Headers - - symlink - Versions/Current/Headers - - macos-arm64_x86_64/AppsFlyerLib.framework/Modules - - symlink - Versions/Current/Modules - - macos-arm64_x86_64/AppsFlyerLib.framework/Resources - - symlink - Versions/Current/Resources - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib - - hash - - 4BLK/svWXSqeL4+Ze27os6xcXhs= - - hash2 - - S5/A6eGyA85YPtB5VODgfoi8NMJnyrPrppUCOzUNh+0= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h - - hash - - +3efZHwff+klT9+WxpNLSXo1yto= - - hash2 - - qnssTwJrZtIDeyMBE1BfsXnl8XS/fgn8s6Let6FfKMw= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface - - hash - - VE1A5JvKaCecxMxoqNeoRy+KtjI= - - hash2 - - xaM90w9LXtLmggmhjKVPamI3Pt8qPstZGZlVIcbImKg= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc - - hash - - y8Vx/MXY6l/NIgQ7tbUzkcJzhqA= - - hash2 - - l9ZGM3VfGKpIHL2eVSSa10CnQ29YD1uSZNvMC+ovEtI= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface - - hash - - VE1A5JvKaCecxMxoqNeoRy+KtjI= - - hash2 - - xaM90w9LXtLmggmhjKVPamI3Pt8qPstZGZlVIcbImKg= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface - - hash - - HhbXgSUwojVQHWxZFZYUsTQAquo= - - hash2 - - RA555/XYeG7XSwz3+7Bh1Sz/Z9Cems25KxSU5jthEvI= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc - - hash - - 0U0CeuicBX5DvxmYhbFQGxFgLuw= - - hash2 - - uimpgBDrsuLqvZI4ksFSY0NwsyR97Vk/hDIb1NzoI2A= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface - - hash - - HhbXgSUwojVQHWxZFZYUsTQAquo= - - hash2 - - RA555/XYeG7XSwz3+7Bh1Sz/Z9Cems25KxSU5jthEvI= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist - - hash - - +HcyT7SI+/KwGV6+bZ45sCb8Q+E= - - hash2 - - vliVkAkV0TfMXKO8OSeFjTivRXN9APex3wxOsuvJgCs= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current - - symlink - A - - tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib - - hash - - cHh5Y7mqjlV+gj+Hs9mMJbvI3L0= - - hash2 - - kRRNgml1tiKMTcEMBFFAlpyYVhZiChvTbAVhq3YxIOw= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - FyHavLzfPzrJLtHZfClI6Yfi9pU= - - hash2 - - jvaOU8Bpn5KvyFIaY8I/ACxn+1Fmpt4W0XVufQuwHzI= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - tvos-arm64/AppsFlyerLib.framework/Info.plist - - hash - - d/28mfFMcEcm99F7CZ+/cXRlXr4= - - hash2 - - bvRBx8qaSK3Tqtd7cpNYIbPRkzERL0XJl/N00/O3LEk= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface - - hash - - rauPHghxkpHCbMiJrrfA2yfmQJA= - - hash2 - - zGi52okovoOTSFNsDB+9eQLdbwfUk39SNIHKsAKZRMU= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc - - hash - - L4khRMwr0ufxiRF969FEacJpKVM= - - hash2 - - gSPNqTMy4bVNGGQfu9dAtttSYW74h44RWMX4ILM9fko= - - - tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface - - hash - - rauPHghxkpHCbMiJrrfA2yfmQJA= - - hash2 - - zGi52okovoOTSFNsDB+9eQLdbwfUk39SNIHKsAKZRMU= - - - tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib - - hash - - N7zyMQ4kVyrtFeygoEagLTeH+Ws= - - hash2 - - +TGGPjPnvhpplXkWkfBDYPk8Eghyvmn6clsCn98TNu4= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h - - hash - - +3efZHwff+klT9+WxpNLSXo1yto= - - hash2 - - qnssTwJrZtIDeyMBE1BfsXnl8XS/fgn8s6Let6FfKMw= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist - - hash - - ngtwxefRfuB5qCfcX2RqdkgBKxQ= - - hash2 - - UjBpwbRwAcguvYsmtyp4KciAvW6ElHKNSmuFi01LWfU= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - hash - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - hash2 - - TAfbwR64HDc8w65FWXqRuomJ3UsgNZ6pyxzInFajSXA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash - - auLSYrRIxjkBMGw+CAgTbvLd9yU= - - hash2 - - 300p7IN3z8uZ8VQ0iXlVecgZPrYXq1rS3OfRnfRA+2o= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - hash2 - - TAfbwR64HDc8w65FWXqRuomJ3UsgNZ6pyxzInFajSXA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - hash - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - hash2 - - 2drMHrZqg/7ji4Z6Ch/hlxHxNn2PsJiooG4LXtiQBMg= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash - - vv8hIe9a03+ijni0HM6lhydHn1g= - - hash2 - - h2XrHvgeWoKQ0ng1EcPcsoXUF9FckmB5ggV3VAV9HAc= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - hash2 - - 2drMHrZqg/7ji4Z6Ch/hlxHxNn2PsJiooG4LXtiQBMg= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory - - hash - - p02wR7ceoBxMTNSavo/asC1evU0= - - hash2 - - G3Egu+MBAQiHJgfL6ieh8TIM4JvvILlVETBz5Bnuusc= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements - - hash - - OnX22wWFKRSOFN1+obRynMCeyXM= - - hash2 - - mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 - - hash - - SSSzjC7X9eBlmzD7hH416c6lQRo= - - hash2 - - 7sRasyqP0a8lCDoxZmIEkqFDsxv4KQ/AKsnP/fHN2BM= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources - - hash - - 6cajJzovVO8P6roJ9I9h5vLqsSs= - - hash2 - - NDSnY93obgzVCix5xGWrWipv/ZUa81Odcy3fy4PxMig= - - - tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature - - hash - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - hash2 - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeSignature b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeSignature deleted file mode 100644 index 42e2bad..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/_CodeSignature/CodeSignature and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index cf96fba..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 80b6603..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,331 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e309334..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,745 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.16.2 (230) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import - - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - - -@class AppsFlyerConsent; -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index 7e47c3f..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface deleted file mode 100644 index 4ef1e43..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index 7bb813f..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface deleted file mode 100644 index 4ef1e43..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 120000 index fd96586..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/AppsFlyerLib +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/AppsFlyerLib \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules deleted file mode 120000 index 5736f31..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib deleted file mode 100644 index 969bd28..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/AppsFlyerLib and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index cfc629d..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,658 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#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.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h deleted file mode 100644 index e309334..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,745 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.16.2 (230) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import - - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - - -@class AppsFlyerConsent; -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface deleted file mode 100644 index d0d81dc..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc deleted file mode 100644 index e01ca0a..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface deleted file mode 100644 index d0d81dc..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface deleted file mode 100644 index ec1e46e..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc deleted file mode 100644 index e1db286..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface deleted file mode 100644 index ec1e46e..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index d854ae3..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,52 +0,0 @@ - - - - - BuildMachineOSBuild - 24C101 - CFBundleDevelopmentRegion - en - CFBundleExecutable - AppsFlyerLib - CFBundleIdentifier - com.appsflyer.sdk.lib - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - AppsFlyerLib - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 6.16.2 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 21C52 - DTPlatformName - macosx - DTPlatformVersion - 14.2 - DTSDKBuild - 23C53 - DTSDKName - macosx14.2 - DTXcode - 1510 - DTXcodeBuild - 15C65 - LSMinimumSystemVersion - 10.15 - UIDeviceFamily - - 2 - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst/AppsFlyerLib.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index 966e4e4..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index cfc629d..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,658 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#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.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e309334..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,745 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.16.2 (230) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import - - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - - -@class AppsFlyerConsent; -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index 422e098..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index c7cf1f5..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index c94240d..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface deleted file mode 100644 index c7cf1f5..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index 69606cd..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 34cea57..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface deleted file mode 100644 index 69606cd..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory deleted file mode 100644 index 03e491b..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements deleted file mode 100644 index dbf9d61..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 0fdd681..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index a3694d5..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,432 +0,0 @@ - - - - - files - - Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - Headers/AppsFlyerLib-Swift.h - - +3efZHwff+klT9+WxpNLSXo1yto= - - Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - Info.plist - - 6E9F4RTZq+03xhfNWYVAflvfmsI= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - +Ousx3RR44wg2etzzliwvXbWgpE= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - /gtIRVFsHXn3J452tiAe9T8yl7w= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - +Ousx3RR44wg2etzzliwvXbWgpE= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - HfDE644/4r6dVBV7jq/oFpRLGSc= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - cl0bUKOx4CWj8MsgtvNBuYC+6g0= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - wdMWXUF7fNcQrQ9fVHWTIpNZ430= - - Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - - files2 - - Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - Headers/AppsFlyerLib-Swift.h - - hash - - +3efZHwff+klT9+WxpNLSXo1yto= - - hash2 - - qnssTwJrZtIDeyMBE1BfsXnl8XS/fgn8s6Let6FfKMw= - - - Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash - - +Ousx3RR44wg2etzzliwvXbWgpE= - - hash2 - - MMopU7+L5nNcnI7aDgqx13WsEX3Sik+LWjxdD+P3wtI= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash - - /gtIRVFsHXn3J452tiAe9T8yl7w= - - hash2 - - iCg5XHUpdT54X15ZhYFvucX2KzKUEbF7MIM38w1Jzh4= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash - - +Ousx3RR44wg2etzzliwvXbWgpE= - - hash2 - - MMopU7+L5nNcnI7aDgqx13WsEX3Sik+LWjxdD+P3wtI= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - hash - - HfDE644/4r6dVBV7jq/oFpRLGSc= - - hash2 - - iGHJVzHOwlspOiIWAoeX8Mr6tFh3QUlOL1KBEumpEtE= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - hash2 - - xAYn3VIzzW+1YLhXIaP+eGxo9qF7imZy1RX3VjZrLXY= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash - - cl0bUKOx4CWj8MsgtvNBuYC+6g0= - - hash2 - - tnwMjbnn/fkmlG43z2c8/rYNatQJ9s/ztlyg72JbY7Q= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash - - 5XjpegZ9zdxjERzV6Un3y/g7wEI= - - hash2 - - xAYn3VIzzW+1YLhXIaP+eGxo9qF7imZy1RX3VjZrLXY= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - hash - - wdMWXUF7fNcQrQ9fVHWTIpNZ430= - - hash2 - - xIYa3808R8NwM1tx6xRhwArfSDoRNKvFPQ5otDEflfg= - - - Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature deleted file mode 100644 index e69de29..0000000 diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 120000 index fd96586..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/AppsFlyerLib +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/AppsFlyerLib \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Headers b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Modules b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Modules deleted file mode 120000 index 5736f31..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Resources b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib deleted file mode 100644 index abf3665..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/AppsFlyerLib and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index cfc629d..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,658 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#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.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h deleted file mode 100644 index e309334..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,745 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.16.2 (230) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import - - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - - -@class AppsFlyerConsent; -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface deleted file mode 100644 index c82f5dd..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc deleted file mode 100644 index 0109032..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface deleted file mode 100644 index c82f5dd..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/arm64-apple-macos.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface deleted file mode 100644 index d179194..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc deleted file mode 100644 index 6f1b3c7..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface deleted file mode 100644 index d179194..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-macos.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-macos10.13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 08999c0..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - BuildMachineOSBuild - 24C101 - CFBundleDevelopmentRegion - en - CFBundleExecutable - AppsFlyerLib - CFBundleIdentifier - com.appsflyer.sdk.lib - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - AppsFlyerLib - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 6.16.2 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 21C52 - DTPlatformName - macosx - DTPlatformVersion - 14.2 - DTSDKBuild - 23C53 - DTSDKName - macosx14.2 - DTXcode - 1510 - DTXcodeBuild - 15C65 - LSMinimumSystemVersion - 10.13 - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index a18a3f2..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index 80b6603..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,331 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e309334..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,745 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.16.2 (230) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import - - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - - -@class AppsFlyerConsent; -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index d74585e..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface deleted file mode 100644 index 37f9926..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc deleted file mode 100644 index c3440fe..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface deleted file mode 100644 index 37f9926..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib deleted file mode 100644 index 120c17b..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/AppsFlyerLib and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h deleted file mode 100644 index 2025468..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFAdRevenueData.h +++ /dev/null @@ -1,68 +0,0 @@ -// -// AFAdRevenueData.h -// AppsFlyerLib -// -// Created by Veronica Belyakov on 26/06/2024. -// - -typedef NS_CLOSED_ENUM(NSUInteger, AppsFlyerAdRevenueMediationNetworkType) { - AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob = 1, - AppsFlyerAdRevenueMediationNetworkTypeIronSource = 2, - AppsFlyerAdRevenueMediationNetworkTypeApplovinMax= 3, - AppsFlyerAdRevenueMediationNetworkTypeFyber = 4, - AppsFlyerAdRevenueMediationNetworkTypeAppodeal = 5, - AppsFlyerAdRevenueMediationNetworkTypeAdmost = 6, - AppsFlyerAdRevenueMediationNetworkTypeTopon = 7, - AppsFlyerAdRevenueMediationNetworkTypeTradplus = 8, - AppsFlyerAdRevenueMediationNetworkTypeYandex = 9, - AppsFlyerAdRevenueMediationNetworkTypeChartBoost = 10, - AppsFlyerAdRevenueMediationNetworkTypeUnity = 11, - AppsFlyerAdRevenueMediationNetworkTypeToponPte = 12, - AppsFlyerAdRevenueMediationNetworkTypeCustom = 13, - AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization = 14 -} NS_SWIFT_NAME(MediationNetworkType); - -#define kAppsFlyerAdRevenueMonetizationNetwork @"monetization_network" -#define kAppsFlyerAdRevenueMediationNetwork @"mediation_network" -#define kAppsFlyerAdRevenueEventRevenue @"event_revenue" -#define kAppsFlyerAdRevenueEventRevenueCurrency @"event_revenue_currency" -#define kAppsFlyerAdRevenueCustomParameters @"custom_parameters" -#define kAFADRWrapperTypeGeneric @"adrevenue_sdk" - -//Pre-defined keys for non-mandatory dictionary - -//Code ISO 3166-1 format -#define kAppsFlyerAdRevenueCountry @"country" - -//ID of the ad unit for the impression -#define kAppsFlyerAdRevenueAdUnit @"ad_unit" - -//Format of the ad -#define kAppsFlyerAdRevenueAdType @"ad_type" - -//ID of the ad placement for the impression -#define kAppsFlyerAdRevenuePlacement @"placement" - - -@interface AFAdRevenueData : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nonnull, nonatomic) NSString *monetizationNetwork; -@property AppsFlyerAdRevenueMediationNetworkType mediationNetwork; -@property (strong, nonnull, nonatomic) NSString *currencyIso4217Code; -@property (strong, nonnull, nonatomic) NSNumber *eventRevenue; - -/** -* @param monetizationNetwork network which monetized the impression (@"facebook") -* @param mediationNetwork mediation source that mediated the monetization network for the impression (AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob) -* @param currencyIso4217Code reported impression’s revenue currency ISO 4217 format (@"USD") -* @param eventRevenue reported impression’s revenue (@(0.001994303)) -*/ -- (instancetype _Nonnull )initWithMonetizationNetwork:(NSString *_Nonnull)monetizationNetwork - mediationNetwork:(AppsFlyerAdRevenueMediationNetworkType)mediationNetwork - currencyIso4217Code:(NSString *_Nonnull)currencyIso4217Code - eventRevenue:(NSNumber *_Nonnull)eventRevenue; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h deleted file mode 100644 index 89af8a7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKPurchaseDetails.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// AFSDKPurchaseDetails.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - -@interface AFSDKPurchaseDetails : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (strong, nullable, nonatomic) NSString *productId; -@property (strong, nullable, nonatomic) NSString *price; -@property (strong, nullable, nonatomic) NSString *currency; -@property (strong, nullable, nonatomic) NSString *transactionId; - -- (instancetype _Nonnull )initWithProductId:(NSString *_Nullable)productId - price:(NSString *_Nullable)price - currency:(NSString *_Nullable)currency - transactionId:(NSString *_Nullable)transactionId; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h deleted file mode 100644 index 94ef0f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AFSDKValidateAndLogResult.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// AFSDKValidateAndLogResult.h -// AppsFlyerLib -// -// Created by Moris Gateno on 13/03/2024. -// - - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) { - AFSDKValidateAndLogStatusSuccess, - AFSDKValidateAndLogStatusFailure, - AFSDKValidateAndLogStatusError -} NS_SWIFT_NAME(ValidateAndLogStatus); - -NS_SWIFT_NAME(ValidateAndLogResult) -@interface AFSDKValidateAndLogResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status - result:(NSDictionary *_Nullable)result - errorData:(NSDictionary *_Nullable)errorData - error:(NSError *_Nullable)error; - -@property(readonly) AFSDKValidateAndLogStatus status; -// Success case -@property(readonly, nullable) NSDictionary *result; -// Server 200 with validation failure -@property(readonly, nullable) NSDictionary *errorData; -// for the error case -@property(readonly, nullable) NSError *error; - -@end - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h deleted file mode 100644 index 483f8f8..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerCrossPromotionHelper.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// CrossPromotionHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - AppsFlyer allows you to log and attribute installs originating - from cross promotion campaigns of your existing apps. - Afterwards, you can optimize on your cross-promotion traffic to get even better results. - */ -@interface AppsFlyerCrossPromotionHelper : NSObject - -/** - To log an impression use the following API call. - Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard. - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` -*/ -+ (void)logCrossPromoteImpression:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters; - -/** - iOS allows you to utilize the StoreKit component to open - the App Store while remaining in the context of your app. - More details at https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions - - @param appID Promoted App ID - @param campaign A campaign name - @param parameters Additional params like `@{@"af_sub1": @"val", @"custom_param": @"val2" }` - @param openStoreBlock Contains promoted `clickURL` - */ -+ (void)logAndOpenStore:(nonnull NSString *)appID - campaign:(nullable NSString *)campaign - parameters:(nullable NSDictionary *)parameters - openStore:(void (^)(NSURLSession *urlSession, NSURL *clickURL))openStoreBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h deleted file mode 100644 index f099ace..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLink.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// AFSDKDeeplink.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeepLink) -@interface AppsFlyerDeepLink : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property (readonly, nonnull) NSDictionary *clickEvent; -@property (readonly, nullable) NSString *deeplinkValue; -@property (readonly, nullable) NSString *matchType; -@property (readonly, nullable) NSString *clickHTTPReferrer; -@property (readonly, nullable) NSString *mediaSource; -@property (readonly, nullable) NSString *campaign; -@property (readonly, nullable) NSString *campaignId; -@property (readonly, nullable) NSString *afSub1; -@property (readonly, nullable) NSString *afSub2; -@property (readonly, nullable) NSString *afSub3; -@property (readonly, nullable) NSString *afSub4; -@property (readonly, nullable) NSString *afSub5; -@property (readonly) BOOL isDeferred; - -- (NSString *)toString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h deleted file mode 100644 index 50d41d7..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerDeepLinkResult.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// AFSDKDeeplinkResult.h -// AppsFlyerLib -// -// Created by Andrii Hahan on 20.08.2020. -// - -#import - -@class AppsFlyerDeepLink; - -typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { - AFSDKDeepLinkResultStatusNotFound, - AFSDKDeepLinkResultStatusFound, - AFSDKDeepLinkResultStatusFailure, -} NS_SWIFT_NAME(DeepLinkResultStatus); - -NS_SWIFT_NAME(DeepLinkResult) -@interface AppsFlyerDeepLinkResult : NSObject - -- (nonnull instancetype)init NS_UNAVAILABLE; -+ (nonnull instancetype)new NS_UNAVAILABLE; - -@property(readonly) AFSDKDeepLinkResultStatus status; - -@property(readonly, nullable) AppsFlyerDeepLink *deepLink; -@property(readonly, nullable) NSError *error; - -@end diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h deleted file mode 100644 index cfc629d..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib-Swift.h +++ /dev/null @@ -1,658 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#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.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -#ifndef APPSFLYERLIB_SWIFT_H -#define APPSFLYERLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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 - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#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) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="AppsFlyerLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class NSNumber; -@class NSCoder; - -SWIFT_CLASS("_TtC12AppsFlyerLib16AppsFlyerConsent") -@interface AppsFlyerConsent : NSObject -@property (nonatomic, readonly) BOOL isUserSubjectToGDPR; -@property (nonatomic, readonly) BOOL hasConsentForDataUsage; -@property (nonatomic, readonly) BOOL hasConsentForAdsPersonalization; -@property (nonatomic, readonly, strong) NSNumber * _Nullable hasConsentForAdStorage; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -- (nonnull instancetype)initWithNonGDPRUser SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (nonnull instancetype)initWithIsUserSubjectToGDPR:(NSNumber * _Nullable)isUserSubjectToGDPR hasConsentForDataUsage:(NSNumber * _Nullable)hasConsentForDataUsage hasConsentForAdsPersonalization:(NSNumber * _Nullable)hasConsentForAdsPersonalization hasConsentForAdStorage:(NSNumber * _Nullable)hasConsentForAdStorage; -- (nonnull instancetype)initForGDPRUserWithHasConsentForDataUsage:(BOOL)forGDPRUserWithHasConsentForDataUsage hasConsentForAdsPersonalization:(BOOL)hasConsentForAdsPersonalization SWIFT_DEPRECATED_MSG("Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead"); -- (void)encodeWithCoder:(NSCoder * _Nonnull)coder; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder; -@end - -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif - -#else -#error unsupported Swift architecture -#endif diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h deleted file mode 100644 index e309334..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLib.h +++ /dev/null @@ -1,745 +0,0 @@ -// -// AppsFlyerLib.h -// AppsFlyerLib -// -// AppsFlyer iOS SDK 6.16.2 (230) -// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import - - -NS_ASSUME_NONNULL_BEGIN - -// In app event names constants -#define AFEventLevelAchieved @"af_level_achieved" -#define AFEventAddPaymentInfo @"af_add_payment_info" -#define AFEventAddToCart @"af_add_to_cart" -#define AFEventAddToWishlist @"af_add_to_wishlist" -#define AFEventCompleteRegistration @"af_complete_registration" -#define AFEventTutorial_completion @"af_tutorial_completion" -#define AFEventInitiatedCheckout @"af_initiated_checkout" -#define AFEventPurchase @"af_purchase" -#define AFEventRate @"af_rate" -#define AFEventSearch @"af_search" -#define AFEventSpentCredits @"af_spent_credits" -#define AFEventAchievementUnlocked @"af_achievement_unlocked" -#define AFEventContentView @"af_content_view" -#define AFEventListView @"af_list_view" -#define AFEventTravelBooking @"af_travel_booking" -#define AFEventShare @"af_share" -#define AFEventInvite @"af_invite" -#define AFEventLogin @"af_login" -#define AFEventReEngage @"af_re_engage" -#define AFEventUpdate @"af_update" -#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" -#define AFEventLocation @"af_location_coordinates" -#define AFEventCustomerSegment @"af_customer_segment" - -#define AFEventSubscribe @"af_subscribe" -#define AFEventStartTrial @"af_start_trial" -#define AFEventAdClick @"af_ad_click" -#define AFEventAdView @"af_ad_view" - -// In app event parameter names -#define AFEventParamContent @"af_content" -#define AFEventParamAchievementId @"af_achievement_id" -#define AFEventParamLevel @"af_level" -#define AFEventParamScore @"af_score" -#define AFEventParamSuccess @"af_success" -#define AFEventParamPrice @"af_price" -#define AFEventParamContentType @"af_content_type" -#define AFEventParamContentId @"af_content_id" -#define AFEventParamContentList @"af_content_list" -#define AFEventParamCurrency @"af_currency" -#define AFEventParamQuantity @"af_quantity" -#define AFEventParamRegistrationMethod @"af_registration_method" -#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" -#define AFEventParamMaxRatingValue @"af_max_rating_value" -#define AFEventParamRatingValue @"af_rating_value" -#define AFEventParamSearchString @"af_search_string" -#define AFEventParamDateA @"af_date_a" -#define AFEventParamDateB @"af_date_b" -#define AFEventParamDestinationA @"af_destination_a" -#define AFEventParamDestinationB @"af_destination_b" -#define AFEventParamDescription @"af_description" -#define AFEventParamClass @"af_class" -#define AFEventParamEventStart @"af_event_start" -#define AFEventParamEventEnd @"af_event_end" -#define AFEventParamLat @"af_lat" -#define AFEventParamLong @"af_long" -#define AFEventParamCustomerUserId @"af_customer_user_id" -#define AFEventParamValidated @"af_validated" -#define AFEventParamRevenue @"af_revenue" -#define AFEventProjectedParamRevenue @"af_projected_revenue" -#define AFEventParamReceiptId @"af_receipt_id" -#define AFEventParamTutorialId @"af_tutorial_id" -#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" -#define AFEventParamDeepLink @"af_deep_link" -#define AFEventParamOldVersion @"af_old_version" -#define AFEventParamNewVersion @"af_new_version" -#define AFEventParamReviewText @"af_review_text" -#define AFEventParamCouponCode @"af_coupon_code" -#define AFEventParamOrderId @"af_order_id" -#define AFEventParam1 @"af_param_1" -#define AFEventParam2 @"af_param_2" -#define AFEventParam3 @"af_param_3" -#define AFEventParam4 @"af_param_4" -#define AFEventParam5 @"af_param_5" -#define AFEventParam6 @"af_param_6" -#define AFEventParam7 @"af_param_7" -#define AFEventParam8 @"af_param_8" -#define AFEventParam9 @"af_param_9" -#define AFEventParam10 @"af_param_10" -#define AFEventParamTouch @"af_touch_obj" - -#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" -#define AFEventParamReturningDepartureDate @"af_returning_departure_date" -#define AFEventParamDestinationList @"af_destination_list" //array of string -#define AFEventParamCity @"af_city" -#define AFEventParamRegion @"af_region" -#define AFEventParamCountry @"af_country" - - -#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" -#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" -#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string -#define AFEventParamTravelStart @"af_travel_start" -#define AFEventParamTravelEnd @"af_travel_end" -#define AFEventParamNumAdults @"af_num_adults" -#define AFEventParamNumChildren @"af_num_children" -#define AFEventParamNumInfants @"af_num_infants" -#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string - -#define AFEventParamUserScore @"af_user_score" -#define AFEventParamHotelScore @"af_hotel_score" -#define AFEventParamPurchaseCurrency @"af_purchase_currency" - -#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) - -#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) -#define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string -#define AFEventParamPreferredNumStops @"af_preferred_num_stops" - - -@class AppsFlyerConsent; -/// Mail hashing type -typedef enum { - /// None - EmailCryptTypeNone = 0, - /// SHA256 - EmailCryptTypeSHA256 = 3 -} EmailCryptType; - -typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { - AFSDKPluginIOSNative, - AFSDKPluginUnity, - AFSDKPluginFlutter, - AFSDKPluginReactNative, - AFSDKPluginAdobeAir, - AFSDKPluginAdobeMobile, - AFSDKPluginCocos2dx, - AFSDKPluginCordova, - AFSDKPluginMparticle, - AFSDKPluginNativeScript, - AFSDKPluginExpo, - AFSDKPluginUnreal, - AFSDKPluginXamarin, - AFSDKPluginCapacitor, - AFSDKPluginSegment, - AFSDKPluginAdobeSwiftAEP -} NS_SWIFT_NAME(Plugin); - - -NS_SWIFT_NAME(DeepLinkDelegate) -@protocol AppsFlyerDeepLinkDelegate - -@optional -- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; - -@end - -/** - Conform and subscribe to this protocol to allow getting data about conversion and - install attribution - */ -@protocol AppsFlyerLibDelegate - -/** - `conversionInfo` contains information about install. - Organic/non-organic, etc. - @param conversionInfo May contain null values for some keys. Please handle this case. - */ -- (void)onConversionDataSuccess:(NSDictionary *)conversionInfo; - -/** - Any errors that occurred during the conversion request. - */ -- (void)onConversionDataFail:(NSError *)error; - -@optional - -/** - `attributionData` contains information about OneLink, deeplink. - */ -- (void)onAppOpenAttribution:(NSDictionary *)attributionData; - -/** - Any errors that occurred during the attribution request. - */ -- (void)onAppOpenAttributionFailure:(NSError *)error; - -/** - @abstract Sets the HTTP header fields of the ESP resolving to the given - dictionary. - @discussion This method replaces all header fields that may have - existed before this method ESP resolving call. - To keep default SDK behavior - return nil; - */ -- (NSDictionary * _Nullable)allHTTPHeaderFieldsForResolveDeepLinkURL:(NSURL *)URL; - -@end - -/** - You can log installs, app updates, sessions and additional in-app events - (including in-app purchases, game levels, etc.) - to evaluate ROI and user engagement. - The iOS SDK is compatible with all iOS/tvOS devices with iOS version 7 and above. - - @see [SDK Integration Validator](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS) - for more information. - - */ -@interface AppsFlyerLib : NSObject - -/** - Gets the singleton instance of the AppsFlyerLib class, creating it if - necessary. - - @return The singleton instance of AppsFlyerLib. - */ -+ (AppsFlyerLib *)shared; - - -- (void)setUpInteroperabilityObject:(id)object; - -/** - In case you use your own user ID in your app, you can set this property to that ID. - Enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs - */ -@property(nonatomic, strong, nullable) NSString * customerUserID; - -/** - In case you use custom data and you want to receive it in the raw reports. - - @see [Setting additional custom data](https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS#setting-additional-custom-data) for more information. - */ -@property(nonatomic, strong, nullable, setter = setAdditionalData:) NSDictionary * customData; - -/** - Use this property to set your AppsFlyer's dev key - */ -@property(nonatomic, strong) NSString * appsFlyerDevKey; - -/** - Use this property to set your app's Apple ID(taken from the app's page on iTunes Connect) - */ -@property(nonatomic, strong) NSString * appleAppID; - -#ifndef AFSDK_NO_IDFA -/** - AppsFlyer SDK collect Apple's `advertisingIdentifier` if the `AdSupport.framework` included in the SDK. - You can disable this behavior by setting the following property to YES -*/ -@property(nonatomic) BOOL disableAdvertisingIdentifier; - -@property(nonatomic, strong, readonly) NSString *advertisingIdentifier; - -/** - Waits for request user authorization to access app-related data - */ -- (void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval -NS_SWIFT_NAME(waitForATTUserAuthorization(timeoutInterval:)); - -#endif - -@property(nonatomic) BOOL disableSKAdNetwork; - -/** - In case of in app purchase events, you can set the currency code your user has purchased with. - The currency code is a 3 letter code according to ISO standards - - Objective-C: - -
- [[AppsFlyerLib shared] setCurrencyCode:@"USD"];
- 
- - Swift: - -
- AppsFlyerLib.shared().currencyCode = "USD"
- 
- */ -@property(nonatomic, strong, nullable) NSString *currencyCode; - -/** - Prints SDK messages to the console log. This property should only be used in `DEBUG` mode. - The default value is `NO` - */ -@property(nonatomic) BOOL isDebug; - -/** - Set this flag to `YES`, to collect the current device name(e.g. "My iPhone"). Default value is `NO` - */ -@property(nonatomic) BOOL shouldCollectDeviceName; - -/** - Set your `OneLink ID` from OneLink configuration. Used in User Invites to generate a OneLink. - */ -@property(nonatomic, strong, nullable, setter = setAppInviteOneLink:) NSString * appInviteOneLinkID; - -/** - Opt-out logging for specific user - */ -@property(atomic) BOOL anonymizeUser; - -/** - Opt-out for Apple Search Ads attributions - */ -@property(atomic) BOOL disableCollectASA; - -/** - Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] - */ -@property(nonatomic) BOOL disableAppleAdsAttribution; - -/** - AppsFlyer delegate. See `AppsFlyerLibDelegate` - */ -@property(weak, nonatomic) id delegate; - -@property(weak, nonatomic) id deepLinkDelegate; - -/** - In app purchase receipt validation Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useReceiptValidationSandbox; - -/** - Set this flag to test uninstall on Apple environment(production or sandbox). The default value is NO - */ -@property(nonatomic) BOOL useUninstallSandbox; - -/** - For advertisers who wrap OneLink within another Universal Link. - An advertiser will be able to deeplink from a OneLink wrapped within another Universal Link and also log this retargeting conversion. - - Objective-C: - -
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *resolveDeepLinkURLs; - -/** - For advertisers who use vanity OneLinks. - - Objective-C: - -
- [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]];
- 
- */ -@property(nonatomic, nullable, copy) NSArray *oneLinkCustomDomains; - -/* - * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string - */ -@property(nonatomic, nullable, copy) NSString *phoneNumber; - -- (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; - -/** - To disable app's vendor identifier(IDFV), set disableIDFVCollection to true - */ -@property(nonatomic) BOOL disableIDFVCollection; - -/** - Set the language of the device. The data will be displayed in Raw Data Reports - Objective-C: - -
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:@"EN"]
- 
- - Swift: - -
- AppsFlyerLib.shared().currentDeviceLanguage("EN")
- 
- */ -@property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; - -/** - Internal API. Please don't use. - */ -- (void)setPluginInfoWith:(AFSDKPlugin)plugin - pluginVersion:(NSString *)version - additionalParams:(NSDictionary * _Nullable)additionalParams -NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); - -/** - Enable the collection of Facebook Deferred AppLinks - Requires Facebook SDK and Facebook app on target/client device. - This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. - - Objective-C: - -
- [[AppsFlyerLib shared] enableFacebookDeferredApplinksWithClass:[FBSDKAppLinkUtility class]]
- 
- - Swift: - -
- AppsFlyerLib.shared().enableFacebookDeferredApplinks(with: FBSDKAppLinkUtility.self)
- 
- - @param facebookAppLinkUtilityClass requeries method call `[FBSDKAppLinkUtility class]` as param. - */ -- (void)enableFacebookDeferredApplinksWithClass:(Class _Nullable)facebookAppLinkUtilityClass; - -/** - Use this to send the user's emails - - @param userEmails The list of strings that hold mails - @param type Hash algoritm - */ -- (void)setUserEmails:(NSArray * _Nullable)userEmails withCryptType:(EmailCryptType)type; - -/** - Start SDK session - Add the following method at the `applicationDidBecomeActive` in AppDelegate class - */ -- (void)start; - -- (void)startWithCompletionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler; - -/** - Use this method to log an events with multiple values. See AppsFlyer's documentation for details. - - Objective-C: - -
- [[AppsFlyerLib shared] logEvent:AFEventPurchase
-        withValues: @{AFEventParamRevenue  : @200,
-                      AFEventParamCurrency : @"USD",
-                      AFEventParamQuantity : @2,
-                      AFEventParamContentId: @"092",
-                      AFEventParamReceiptId: @"9277"}];
- 
- - Swift: - -
- AppsFlyerLib.shared().logEvent(AFEventPurchase,
-        withValues: [AFEventParamRevenue  : "1200",
-                     AFEventParamContent  : "shoes",
-                     AFEventParamContentId: "123"])
- 
- - @param eventName Contains name of event that could be provided from predefined constants in `AppsFlyerLib.h` - @param values Contains dictionary of values for handling by backend - */ -- (void)logEvent:(NSString *)eventName withValues:(NSDictionary * _Nullable)values; - -- (void)logEventWithEventName:(NSString *)eventName - eventValues:(NSDictionary * _Nullable)eventValues - completionHandler:(void (^ _Nullable)(NSDictionary * _Nullable dictionary, NSError * _Nullable error))completionHandler -NS_SWIFT_NAME(logEvent(name:values:completionHandler:)); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param productIdentifier The product identifier - @param price The product price - @param currency The product currency - @param transactionId The purchase transaction Id - @param params The additional param, which you want to receive it in the raw reports - @param successBlock The success callback - @param failedBlock The failure callback - */ -- (void)validateAndLogInAppPurchase:(NSString * _Nullable)productIdentifier - price:(NSString * _Nullable)price - currency:(NSString * _Nullable)currency - transactionId:(NSString * _Nullable)transactionId - additionalParameters:(NSDictionary * _Nullable)params - success:(void (^ _Nullable)(NSDictionary * response))successBlock - failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); - -typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); - -/** - To log and validate in app purchases you can call this method from the completeTransaction: method on - your `SKPaymentTransactionObserver`. - - @param details The product details - @param extraEventValues The additional param, which you want to receive it in the raw reports - @param completionHandler The callback - */ -- (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details - extraEventValues:(NSDictionary * _Nullable)extraEventValues - completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); - -/** - An API to provide the data from the impression payload to AdRevenue. - - @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. - @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) - */ -- (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; - -/** - To log location for geo-fencing. Does the same as code below. - -
- AppsFlyerLib.shared().logEvent(AFEventLocation, withValues: [AFEventParamLong:longitude, AFEventParamLat:latitude])
- 
- - @param longitude The location longitude - @param latitude The location latitude - */ -- (void)logLocation:(double)longitude latitude:(double)latitude NS_SWIFT_NAME(logLocation(longitude:latitude:)); - -/** - This method returns AppsFlyer's internal id(unique for your app) - - @return Internal AppsFlyer Id - */ -- (NSString *)getAppsFlyerUID; - -/** - In case you want to log deep linking. Does the same as `-handleOpenURL:sourceApplication:withAnnotation`. - - @warning Preferred to use `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url sourceApplication:(NSString * _Nullable)sourceApplication API_UNAVAILABLE(macos); - -/** - In case you want to log deep linking. - Call this method from inside your AppDelegate `-application:openURL:sourceApplication:annotation:` - - @param url The URL that was passed to your AppDelegate. - @param sourceApplication The sourceApplication that passed to your AppDelegate. - @param annotation The annotation that passed to your app delegate. - */ -- (void)handleOpenURL:(NSURL * _Nullable)url - sourceApplication:(NSString * _Nullable)sourceApplication - withAnnotation:(id _Nullable)annotation API_UNAVAILABLE(macos); - -/** - Call this method from inside of your AppDelegate `-application:openURL:options:` method. - This method is functionally the same as calling the AppsFlyer method - `-handleOpenURL:sourceApplication:withAnnotation`. - - @param url The URL that was passed to your app delegate - @param options The options dictionary that was passed to your AppDelegate. - */ -- (void)handleOpenUrl:(NSURL * _Nullable)url options:(NSDictionary * _Nullable)options API_UNAVAILABLE(macos); - -/** - Allow AppsFlyer to handle restoration from an NSUserActivity. - Use this method to log deep links with OneLink. - - @param userActivity The NSUserActivity that caused the app to be opened. - */ -- (BOOL)continueUserActivity:(NSUserActivity * _Nullable)userActivity - restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler NS_AVAILABLE_IOS(9_0) API_UNAVAILABLE(macos); - -/** - Enable AppsFlyer to handle a push notification. - - @see [Learn more here](https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns) - - @warning To make it work - set data, related to AppsFlyer under key @"af". - - @param pushPayload The `userInfo` from received remote notification. One of root keys should be @"af". - */ -- (void)handlePushNotification:(NSDictionary * _Nullable)pushPayload; - - -/** - Register uninstall - you should register for remote notification and provide AppsFlyer the push device token. - - @param deviceToken The `deviceToken` from `-application:didRegisterForRemoteNotificationsWithDeviceToken:` - */ -- (void)registerUninstall:(NSData * _Nullable)deviceToken; - -/** - Get SDK version. - - @return The AppsFlyer SDK version info. - */ -- (NSString *)getSDKVersion; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallWithData:(NSString *)data; - -/** - This is for internal use. - */ -- (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; - -/** - Used to force the trigger `onAppOpenAttribution` delegate. - Notice, re-engagement, session and launch won't be counted. - Only for OneLink/UniversalLink/Deeplink resolving. - - @param URL The param to resolve into -[AppsFlyerLibDelegate onAppOpenAttribution:] - */ -- (void)performOnAppAttributionWithURL:(NSURL * _Nullable)URL; - -/** - @brief This property accepts a string value representing the host name for all endpoints. - Can be used to Zero rate your application’s data usage. Contact your CSM for more information. - - @warning To use `default` SDK endpoint – set value to `nil`. - - Objective-C: - -
- [[AppsFlyerLib shared] setHost:@"example.com"];
- 
- - Swift: - -
- AppsFlyerLib.shared().host = "example.com"
- 
- */ -@property(nonatomic, strong, readonly) NSString *host; - -/** - * This function set the host name and prefix host name for all the endpoints - **/ -- (void)setHost:(NSString *)host withHostPrefix:(NSString *)hostPrefix; - -/** - * This property accepts a string value representing the prefix host name for all endpoints. - * for example "test" prefix with default host name will have the address "host.appsflyer.com" - */ -@property(nonatomic, strong, readonly) NSString *hostPrefix; - -/** - This property is responsible for timeout between sessions in seconds. - Default value is 5 seconds. - */ -@property(atomic) NSUInteger minTimeBetweenSessions; - -/** - API to shut down all SDK activities. - - @warning This will disable all requests from AppsFlyer SDK. - */ -@property(atomic) BOOL isStopped; - -/** - API to set manually Facebook deferred app link - */ -@property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - */ -@property(nonatomic, nullable, copy) NSArray *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -@property(nonatomic) NSUInteger deepLinkTimeout; - -/** - Block an events from being shared with any partner - This method overwrite -[AppsFlyerLib setSharingFilter:] - */ -- (void)setSharingFilterForAllPartners DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); - -/** - Block an events from being shared with ad networks and other 3rd party integrations - Must only include letters/digits or underscore, maximum length: 45 - - The sharing filter is cleared in case if `nil` or empty array passed as a parameter. - "all" keyword sets sharing filter for ALL partners, it is case insencitive and has highest priority - if passed along with another values. For example, if ["all", "examplePartner1_int", "examplePartner2_int" ] passed, - the sharing filter will be set for ALL partners. - */ -- (void)setSharingFilterForPartners:(NSArray * _Nullable)sharingFilter; - - -/** - Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage - purposes within the application. This method must be invoked with the user's current consent status each - time the app starts or whenever there is a change in the user's consent preferences. - - Note that this method does not persist the consent data across app sessions; it only applies for the - duration of the current app session. If you wish to stop providing the consent data, you should - cease calling this method. - - @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. - */ -- (void)setConsentData:(AppsFlyerConsent *)consent; - -/** - Enable the SDK to collect and send TCF data - - @param shouldCollectConsentData indicates if the TCF data collection is enabled. - */ -- (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; - -/** - Validate if URL contains certain string and append quiery - parameters to deeplink URL. In case if URL does not contain user-defined string, - parameters are not appended to the url. - - @param containsString string to check in URL. - @param parameters NSDictionary, which containins parameters to append to the deeplink url after it passed validation. - */ -- (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString - parameters:(NSDictionary *)parameters -NS_SWIFT_NAME(appendParametersToDeeplinkURL(contains:parameters:)); - -/** - Adds array of keys, which are used to compose key path - to resolve deeplink from push notification payload `userInfo`. - - @param deepLinkPath an array of strings which contains keys to search for deeplink in payload. - */ -- (void)addPushNotificationDeepLinkPath:(NSArray *)deepLinkPath; - -/** - * Allows sending custom data for partner integration purposes. - * - * @param partnerId ID of the partner (usually has "_int" suffix) - * @param partnerInfo customer data, depends on the integration nature with specific partner - */ - -- (void)setPartnerDataWithPartnerId:(NSString * _Nullable)partnerId partnerInfo:(NSDictionary * _Nullable)partnerInfo -NS_SWIFT_NAME(setPartnerData(partnerId:partnerInfo:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h deleted file mode 100644 index d3ec8f4..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerLinkGenerator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// LinkGenerator.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` - */ -@interface AppsFlyerLinkGenerator : NSObject - -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -- (instancetype)init NS_UNAVAILABLE; -/// Instance initialization is not allowed. Use generated instance -/// from `-[AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:completionHandler]` -+ (instancetype)new NS_UNAVAILABLE; - -@property(nonatomic, nullable, copy) NSString *brandDomain; - -/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended -- (void)setChannel :(nonnull NSString *)channel; -/// ReferrerCustomerId setter -- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; -/// A campaign name. Usage: Optional -- (void)setCampaign :(nonnull NSString *)campaign; -/// ReferrerUID setter -- (void)setReferrerUID :(nonnull NSString *)referrerUID; -/// Referrer name -- (void)setReferrerName :(nonnull NSString *)referrerName; -/// The URL to referrer user avatar. Usage: Optional -- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; -/// AppleAppID -- (void)setAppleAppID :(nonnull NSString *)appleAppID; -/// Deeplink path -- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; -/// Base deeplink path -- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; -/// A single key value custom parameter. Usage: Optional -- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString *)key; -/// Multiple key value custom parameters. Usage: Optional -- (void)addParameters :(nonnull NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h deleted file mode 100644 index f55dbf9..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Headers/AppsFlyerShareInviteHelper.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// ShareInviteHelper.h -// AppsFlyerLib -// -// Created by Gil Meroz on 27/01/2017. -// -// - -#import -#import - -/** - AppsFlyerShareInviteHelper - */ -@interface AppsFlyerShareInviteHelper : NSObject - -NS_ASSUME_NONNULL_BEGIN - -/** - * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods - * which allow passing on additional information on the click. - * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. - * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. - */ -+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler; - -/** - * It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. - * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. - */ -+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist deleted file mode 100644 index 965e806..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Info.plist and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface deleted file mode 100644 index c83fb6e..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index f743adc..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index c83fb6e..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json deleted file mode 100644 index 9966350..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json +++ /dev/null @@ -1,2830 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerDMADataMapper", - "children": [ - { - "kind": "TypeDecl", - "name": "DMAConstants", - "printedName": "DMAConstants", - "children": [ - { - "kind": "Var", - "name": "dmaCmpSdkId", - "printedName": "dmaCmpSdkId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO11dmaCmpSdkIdSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpSdkIdKey", - "printedName": "dmaCmpSdkIdKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpSdkIdKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersion", - "printedName": "cmpSdkVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO13cmpSdkVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpSdkVersionKey", - "printedName": "cmpSdkVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpSdkVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersion", - "printedName": "cmpPolicyVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16cmpPolicyVersionSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpPolicyVersionKey", - "printedName": "cmpPolicyVersionKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO19cmpPolicyVersionKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprApplies", - "printedName": "cmpGdprApplies", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14cmpGdprAppliesSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cmpGdprAppliesKey", - "printedName": "cmpGdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17cmpGdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcString", - "printedName": "dmaCmpTcString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14dmaCmpTcStringSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaCmpTcStringKey", - "printedName": "dmaCmpTcStringKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO17dmaCmpTcStringKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "gdprAppliesKey", - "printedName": "gdprAppliesKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO14gdprAppliesKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adUserDataEnabledKey", - "printedName": "adUserDataEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO20adUserDataEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adPersonalizationEnabledKey", - "printedName": "adPersonalizationEnabledKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO27adPersonalizationEnabledKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "adStorageEnabled", - "printedName": "adStorageEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO16adStorageEnabledSSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "tcfKey", - "printedName": "tcfKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO6tcfKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "manualKey", - "printedName": "manualKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvpZ", - "moduleName": "AppsFlyerLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO9manualKeySSvgZ", - "moduleName": "AppsFlyerLib", - "static": true, - "implicit": true, - "declAttributes": [ - "Transparent" - ], - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12DMAConstantsO", - "moduleName": "AppsFlyerLib", - "isEnumExhaustive": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Var", - "name": "userDefaults", - "printedName": "userDefaults", - "children": [ - { - "kind": "TypeNominal", - "name": "UserDefaults", - "printedName": "Foundation.UserDefaults", - "usr": "c:objc(cs)NSUserDefaults" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC12userDefaults33_136B2211F4FDEE93A46D89206478F6DELLSo06NSUserG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "consentData", - "printedName": "consentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvs", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAA0aB7ConsentCSgvM", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Transparent", - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setConsentData", - "printedName": "setConsentData(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC14setConsentData07consentH0yAA0abG0CSg_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDmaData", - "printedName": "getDmaData(shouldCollectConsentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC10getDmaData020shouldCollectConsentH0SDySSypGSgSb_tF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getManualDataTestable", - "printedName": "getManualDataTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC21getManualDataTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dmaUserDefaultsValuesTestable", - "printedName": "dmaUserDefaultsValuesTestable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC29dmaUserDefaultsValuesTestableSDySSypGSgyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC", - "mangledName": "$s12AppsFlyerLib0aB13DMADataMapperC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKConnectorCommunication", - "printedName": "AFSDKConnectorCommunication", - "children": [ - { - "kind": "Function", - "name": "setPurchaseDataSendingDelegate", - "printedName": "setPurchaseDataSendingDelegate(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AppsFlyerLib.AFSDKPurchaseDataSendingDelegate", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication(im)setPurchaseDataSendingDelegateWithDelegate:", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP30setPurchaseDataSendingDelegate8delegateyAA013AFSDKPurchasehiJ0_p_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKConnectorCommunication>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "setPurchaseDataSendingDelegateWithDelegate:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKConnectorCommunication", - "mangledName": "$s12AppsFlyerLib27AFSDKConnectorCommunicationP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerDMAService", - "children": [ - { - "kind": "Var", - "name": "dmaDataMapper", - "printedName": "dmaDataMapper", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMADataMapper", - "printedName": "AppsFlyerLib.AppsFlyerDMADataMapper", - "usr": "s:12AppsFlyerLib0aB13DMADataMapperC" - } - ], - "declKind": "Var", - "usr": "s:12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC13dmaDataMapper33_C51063E2D6AC817DE79F1A4B13AE5344LLAA0ab7DMADataG0Cvp", - "moduleName": "AppsFlyerLib", - "isInternal": true, - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "fixedbinaryorder": 0, - "isLet": true, - "hasStorage": true - }, - { - "kind": "Var", - "name": "shouldCollectConsentData", - "printedName": "shouldCollectConsentData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC" - ], - "fixedbinaryorder": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)shouldCollectConsentData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC24shouldCollectConsentDataSbvg", - "moduleName": "AppsFlyerLib", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dmaData", - "printedName": "dmaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(py)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)dmaData", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC7dmaDataSDySSypGSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(consentData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)initWithConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC11consentDataAcA0aB7ConsentCSg_tcfc", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setCollectConsentData", - "printedName": "setCollectConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setCollectConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC21setCollectConsentDatayySbF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setManualConsentData", - "printedName": "setManualConsentData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)setManualConsentData:", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC20setManualConsentDatayyAA0abG0CF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerDMAService", - "printedName": "AppsFlyerLib.AppsFlyerDMAService", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService(im)init", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceCACycfc", - "moduleName": "AppsFlyerLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerDMAService", - "mangledName": "$s12AppsFlyerLib0aB10DMAServiceC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerConsent", - "children": [ - { - "kind": "Var", - "name": "isUserSubjectToGDPR", - "printedName": "isUserSubjectToGDPR", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)isUserSubjectToGDPR", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPRSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForDataUsage", - "printedName": "hasConsentForDataUsage", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForDataUsage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForDataUsageSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdsPersonalization", - "printedName": "hasConsentForAdsPersonalization", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdsPersonalization", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD21ForAdsPersonalizationSbvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hasConsentForAdStorage", - "printedName": "hasConsentForAdStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(py)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvp", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "AccessControl", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)hasConsentForAdStorage", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC03hasD12ForAdStorageSo8NSNumberCSgvg", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nonGDPRUser:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithNonGDPRUser", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC11nonGDPRUserACyt_tcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(isUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC19isUserSubjectToGDPR03hasD12ForDataUsage0jdK18AdsPersonalization0jdK9AdStorageACSo8NSNumberCSg_A3Jtcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithIsUserSubjectToGDPR:hasConsentForDataUsage:hasConsentForAdsPersonalization:hasConsentForAdStorage:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(forGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initForGDPRUserWithHasConsentForDataUsage:hasConsentForAdsPersonalization:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC018forGDPRUserWithHasD12ForDataUsage03hasdI18AdsPersonalizationACSb_Sbtcfc", - "moduleName": "AppsFlyerLib", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Convenience", - "Available", - "ObjC" - ], - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "getManualConsentData", - "printedName": "getManualConsentData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)getManualConsentData", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC09getManualD4DataSDySSypGyF", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "Final", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)encodeWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC6encode4withySo7NSCoderC_tF", - "moduleName": "AppsFlyerLib", - "objc_name": "encodeWithCoder:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AppsFlyerLib.AppsFlyerConsent?", - "children": [ - { - "kind": "TypeNominal", - "name": "AppsFlyerConsent", - "printedName": "AppsFlyerLib.AppsFlyerConsent", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent(im)initWithCoder:", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "AppsFlyerLib", - "objc_name": "initWithCoder:", - "declAttributes": [ - "ObjC", - "AccessControl", - "Convenience" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@AppsFlyerLib@objc(cs)AppsFlyerConsent", - "mangledName": "$s12AppsFlyerLib0aB7ConsentC", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "AccessControl", - "Final", - "ObjCMembers", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "AppsFlyerLib", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "AFSDKPurchaseDataSendingDelegate", - "printedName": "AFSDKPurchaseDataSendingDelegate", - "children": [ - { - "kind": "Function", - "name": "sendDecryptReceiptRequest", - "printedName": "sendDecryptReceiptRequest(environment:receipt:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP25sendDecryptReceiptRequest11environment7receipt17completionHandlerySS_SSySDys11AnyHashableVypGSg_s5Error_pSgtctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendDecryptReceiptRequestWithEnvironment:receipt:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendARSRequest", - "printedName": "sendARSRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendARSRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP14sendARSRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendARSRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendVIAPRequest", - "printedName": "sendVIAPRequest(with:withStoreKitVersion:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.AnyHashable : Any]?, Swift.Error?, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP15sendVIAPRequest4with0J15StoreKitVersion17completionHandlerySDys11AnyHashableVypG_SiyAJSg_s5Error_pSgSitctF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendVIAPRequestWith:withStoreKitVersion:completionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCachedPurchaseConnectorEvents", - "printedName": "sendCachedPurchaseConnectorEvents(completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate(im)sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP33sendCachedPurchaseConnectorEvents17completionHandleryyyc_tF", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 where τ_0_0 : AppsFlyerLib.AFSDKPurchaseDataSendingDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "sendCachedPurchaseConnectorEventsWithCompletionHandler:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@AppsFlyerLib@objc(pl)AFSDKPurchaseDataSendingDelegate", - "mangledName": "$s12AppsFlyerLib32AFSDKPurchaseDataSendingDelegateP", - "moduleName": "AppsFlyerLib", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "ObjC" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 225, - "length": 17, - "value": "\"IABTCF_CmpSdkID\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 280, - "length": 12, - "value": "\"cmp_sdk_id\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 328, - "length": 22, - "value": "\"IABTCF_CmpSdkVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 17, - "value": "\"cmp_sdk_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 445, - "length": 22, - "value": "\"IABTCF_PolicyVersion\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 509, - "length": 16, - "value": "\"policy_version\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 20, - "value": "\"IABTCF_gdprApplies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 622, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 17, - "value": "\"IABTCF_TCString\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 730, - "length": 10, - "value": "\"tcstring\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 784, - "length": 14, - "value": "\"gdpr_applies\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 22, - "value": "\"ad_user_data_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 927, - "length": 28, - "value": "\"ad_personalization_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1001, - "length": 20, - "value": "\"ad_storage_enabled\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1050, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"manual\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "Dictionary", - "offset": 1553, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "BooleanLiteral", - "offset": 1605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2291, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "StringLiteral", - "offset": 2296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMADataMapper.swift", - "kind": "IntegerLiteral", - "offset": 3043, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "BooleanLiteral", - "offset": 300, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerDMAService.swift", - "kind": "StringLiteral", - "offset": 148, - "length": 19, - "value": "\"AppsFlyerLib.AppsFlyerDMAService\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 265, - "length": 21, - "value": "\"isUserSubjectToGDPR\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 24, - "value": "\"hasConsentForDataUsage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 409, - "length": 33, - "value": "\"hasConsentForAdsPersonalization\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 24, - "value": "\"hasConsentForAdStorage\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 674, - "length": 52, - "value": "\"Appsflyer Consent Data: isUserSubjectToGDPR is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1009, - "length": 55, - "value": "\"Appsflyer Consent Data: hasConsentForDataUsage is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "StringLiteral", - "offset": 1377, - "length": 64, - "value": "\"Appsflyer Consent Data: hasConsentForAdsPersonalization is nil\"" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 1466, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 2125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "BooleanLiteral", - "offset": 3985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/amit.levy\/Old-BM\/build-machine-sdk\/workspace\/ios_sdk_framework_test\/AppsFlyerLib\/AppsFlyerLib\/CMP\/AppsFlyerConsent.swift", - "kind": "Dictionary", - "offset": 4309, - "length": 3, - "value": "[]" - } - ] -} \ No newline at end of file diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface deleted file mode 100644 index e474bd2..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index d10ae4a..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index e474bd2..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,32 +0,0 @@ -// swift-interface-format-version: 1.0 -// 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 x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AppsFlyerLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import AppsFlyerLib -import Foundation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers final public class AppsFlyerConsent : ObjectiveC.NSObject, Foundation.NSCoding { - @objc final public var isUserSubjectToGDPR: Swift.Bool { - @objc get - } - @objc final public var hasConsentForDataUsage: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdsPersonalization: Swift.Bool { - @objc get - } - @objc final public var hasConsentForAdStorage: Foundation.NSNumber? { - @objc get - } - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(nonGDPRUser: Swift.Void) - @objc convenience public init(isUserSubjectToGDPR: Foundation.NSNumber? = nil, hasConsentForDataUsage: Foundation.NSNumber? = nil, hasConsentForAdsPersonalization: Foundation.NSNumber? = nil, hasConsentForAdStorage: Foundation.NSNumber? = nil) - @objc @available(*, deprecated, message: "Use init(isUserSubjectToGDPR:, hasConsentForDataUsage:, hasConsentForAdsPersonalization:, hasConsentForAdStorage:) instead") - convenience public init(forGDPRUserWithHasConsentForDataUsage: Swift.Bool, hasConsentForAdsPersonalization: Swift.Bool) - @objc final public func encode(with coder: Foundation.NSCoder) - @objc convenience public init?(coder: Foundation.NSCoder) - @objc deinit -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap deleted file mode 100644 index abf5a48..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module AppsFlyerLib { - umbrella header "AppsFlyerLib.h" - - export * - module * { export * } -} - -module AppsFlyerLib.Swift { - header "AppsFlyerLib-Swift.h" - requires objc -} diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index 5da2889..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,73 +0,0 @@ - - - - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising - - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeProductInteraction - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAnalytics - - - - NSPrivacyTrackingDomains - - att-attr.whappsflyer.com - att-attr.appsflyer-cn.com - att-attr.hevents.appsflyer-cn.com - att-launches.whappsflyer.com - att-launches.appsflyer-cn.com - att-launches.hevents.appsflyer-cn.com - att-conversions.hevents.appsflyer-cn.com - att-conversions.appsflyer-cn.com - att-conversions.whappsflyer.com - att-dlsdk.hevents.appsflyer-cn.com - att-dlsdk.appsflyer-cn.com - att-dlsdk.whappsflyer.com - att-dlsdk.appsflyersdk.com - att-conversions.appsflyersdk.com - att-launches.appsflyersdk.com - att-attr.appsflyersdk.com - - NSPrivacyTracking - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - - - NSPrivacyAccessedAPITypeReasons - - C617.1 - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory deleted file mode 100644 index 626c4f8..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements deleted file mode 100644 index dbf9d61..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 48cf0f3..0000000 Binary files a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index b25d01a..0000000 --- a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,432 +0,0 @@ - - - - - files - - Headers/AFAdRevenueData.h - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - Headers/AFSDKPurchaseDetails.h - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - Headers/AFSDKValidateAndLogResult.h - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - Headers/AppsFlyerCrossPromotionHelper.h - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - Headers/AppsFlyerDeepLink.h - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - Headers/AppsFlyerDeepLinkResult.h - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - Headers/AppsFlyerLib-Swift.h - - +3efZHwff+klT9+WxpNLSXo1yto= - - Headers/AppsFlyerLib.h - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - Headers/AppsFlyerLinkGenerator.h - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - Headers/AppsFlyerShareInviteHelper.h - - LysKB9CL90x+MWXOuuRPixmiVJo= - - Info.plist - - ngtwxefRfuB5qCfcX2RqdkgBKxQ= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - auLSYrRIxjkBMGw+CAgTbvLd9yU= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - MQUEfchucWzNLwfsUQUTYj9n2O8= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - vv8hIe9a03+ijni0HM6lhydHn1g= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - jCTkpDpe9W+h4D4ydiyXiOrVm0Y= - - Modules/module.modulemap - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - PrivacyInfo.xcprivacy - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - - files2 - - Headers/AFAdRevenueData.h - - hash - - sZe23Bbg0H2WgHLIqHQe0g++6Mo= - - hash2 - - yrAHizSHbgcNNFLOfLoHWfaZGyJOlAoDsri7G5c7ZiA= - - - Headers/AFSDKPurchaseDetails.h - - hash - - JFCJYWlcCsMjEbsAF0aQh2JXaKQ= - - hash2 - - UNK4h738nezlAQq+5weKs6WQUIVzBoBZIFYlfSGbhRA= - - - Headers/AFSDKValidateAndLogResult.h - - hash - - h3cMtJeCvFHGPKBZbeqwFQic6m0= - - hash2 - - 8B0SIW1N+hhdxvGum5eyxLMW5e/T797WSXOd2i+irv4= - - - Headers/AppsFlyerCrossPromotionHelper.h - - hash - - ezewyhf50Apa+1HjqfRFE7nXZIE= - - hash2 - - YgrwrWx/ZFYjXh2t5ZHY6S0EZTroYfe5Nprl3alq+Ho= - - - Headers/AppsFlyerDeepLink.h - - hash - - jDznIDDggwXT7EmzE7TYcZjhMjA= - - hash2 - - Z5nW/ynpNNV+krqJXqy1Gb+gdnruPFWutZYYX7hSt3I= - - - Headers/AppsFlyerDeepLinkResult.h - - hash - - 3J9juDAkVB2LUxC7/NDmKqgrzyQ= - - hash2 - - QsQGXKix5206DUBBUdDxfg5ykma/3V9MoHOxbz8NaOs= - - - Headers/AppsFlyerLib-Swift.h - - hash - - +3efZHwff+klT9+WxpNLSXo1yto= - - hash2 - - qnssTwJrZtIDeyMBE1BfsXnl8XS/fgn8s6Let6FfKMw= - - - Headers/AppsFlyerLib.h - - hash - - aRvrYFwbGfgTOeKZeXKnQUiQHWI= - - hash2 - - tqMMk6M+RUKWdkuAJGLvIuRIJrWZMrtMmTh8KvqIQzo= - - - Headers/AppsFlyerLinkGenerator.h - - hash - - f1VXrpY1YtdmdrTgQJz1uOkVZL8= - - hash2 - - LskctIiGg0ZYNtNTDDkoSuDrB3xS58UmllXbrJDHg48= - - - Headers/AppsFlyerShareInviteHelper.h - - hash - - LysKB9CL90x+MWXOuuRPixmiVJo= - - hash2 - - PPGAG29u7O6ly0pq4HZsZxW1zcqL/viEKKBfZ6qzfdE= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.private.swiftinterface - - hash - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - hash2 - - TAfbwR64HDc8w65FWXqRuomJ3UsgNZ6pyxzInFajSXA= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash - - auLSYrRIxjkBMGw+CAgTbvLd9yU= - - hash2 - - 300p7IN3z8uZ8VQ0iXlVecgZPrYXq1rS3OfRnfRA+2o= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash - - 9QhxDHSEnzPEP7DcQOrLopQX4Ng= - - hash2 - - TAfbwR64HDc8w65FWXqRuomJ3UsgNZ6pyxzInFajSXA= - - - Modules/AppsFlyerLib.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - hash - - MQUEfchucWzNLwfsUQUTYj9n2O8= - - hash2 - - vl1H31AuyBPFHgv8nifLfuFMjAzByhF7mpupC9u9OxI= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.abi.json - - hash - - te2dHy7IvbaIGLLtXDFsBmqryQ4= - - hash2 - - fSeCk4+QA/us/NJK4ysFKxk+Hq70/Vr4KlAgEYTlAUA= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.private.swiftinterface - - hash - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - hash2 - - 2drMHrZqg/7ji4Z6Ch/hlxHxNn2PsJiooG4LXtiQBMg= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash - - vv8hIe9a03+ijni0HM6lhydHn1g= - - hash2 - - h2XrHvgeWoKQ0ng1EcPcsoXUF9FckmB5ggV3VAV9HAc= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash - - z0DNni4mqnIsYZ9AYVRPT81spZs= - - hash2 - - 2drMHrZqg/7ji4Z6Ch/hlxHxNn2PsJiooG4LXtiQBMg= - - - Modules/AppsFlyerLib.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - hash - - jCTkpDpe9W+h4D4ydiyXiOrVm0Y= - - hash2 - - HQE2370DlF5AobCPJdG9kQbw6nv6l4Uzz1jcZA3/ZEc= - - - Modules/module.modulemap - - hash - - 0DEMhZAlM33ORMbvU0M8spnqShI= - - hash2 - - uZJ3EIEDqGw+lkbzR0fNsIrgzthOwNUTrpyMAJQZFc8= - - - PrivacyInfo.xcprivacy - - hash - - Z5diDfyJ8Q98I5JWKtVGWEvkXII= - - hash2 - - 6xKWyp82bfdpIC+qSEbhTjD40SP5BWjupWVxQg5FQkY= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature b/swift/basic_app/Pods/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator/AppsFlyerLib.framework/_CodeSignature/CodeSignature deleted file mode 100644 index e69de29..0000000 diff --git a/swift/basic_app/Pods/Manifest.lock b/swift/basic_app/Pods/Manifest.lock index 1e870f3..17fd80a 100644 --- a/swift/basic_app/Pods/Manifest.lock +++ b/swift/basic_app/Pods/Manifest.lock @@ -1,18 +1,18 @@ PODS: - - AppsFlyerFramework (6.16.2): - - AppsFlyerFramework/Main (= 6.16.2) - - AppsFlyerFramework/Main (6.16.2) + - appsflyer-apple-sdk-qa (7.0.0.35704255): + - appsflyer-apple-sdk-qa/Main (= 7.0.0.35704255) + - appsflyer-apple-sdk-qa/Main (7.0.0.35704255) DEPENDENCIES: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa (= 7.0.0.35704255) SPEC REPOS: trunk: - - AppsFlyerFramework + - appsflyer-apple-sdk-qa SPEC CHECKSUMS: - AppsFlyerFramework: fe5303bffcdfd941d5f570c2d21eaaea982e7bdc + appsflyer-apple-sdk-qa: 8305ee27b951975812a06445f781448646358698 -PODFILE CHECKSUM: e4c2ca11293539348e2518eeeb12725441e073d7 +PODFILE CHECKSUM: 3eefdf4366c8e6195a700781ebea23be01e62b68 COCOAPODS: 1.16.2 diff --git a/swift/basic_app/Pods/Pods.xcodeproj/project.pbxproj b/swift/basic_app/Pods/Pods.xcodeproj/project.pbxproj index 3c81a09..caef4e1 100644 --- a/swift/basic_app/Pods/Pods.xcodeproj/project.pbxproj +++ b/swift/basic_app/Pods/Pods.xcodeproj/project.pbxproj @@ -7,93 +7,84 @@ objects = { /* Begin PBXAggregateTarget section */ - B0B23938B1EBCBAD2419AB6E9D222A0B /* AppsFlyerFramework */ = { + DC8EA6044CA5863FC877AD630190FA53 /* appsflyer-apple-sdk-qa */ = { isa = PBXAggregateTarget; - buildConfigurationList = 71B9A5BD1FADAE479D403809E582EC07 /* Build configuration list for PBXAggregateTarget "AppsFlyerFramework" */; + buildConfigurationList = 4EEFA0CC69387CAA580E20FDAE78D835 /* Build configuration list for PBXAggregateTarget "appsflyer-apple-sdk-qa" */; buildPhases = ( - DB7C100E6D7A5CF954757DB8962D9B72 /* [CP] Copy XCFrameworks */, + AE5DE945C03625EC7599F5C8A0E63B92 /* [CP] Copy XCFrameworks */, ); dependencies = ( - E34636818F08D5E85E932E2A0C0ECBC4 /* PBXTargetDependency */, + 018267DC3087672373E15B51F9D6078D /* PBXTargetDependency */, ); - name = AppsFlyerFramework; + name = "appsflyer-apple-sdk-qa"; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 23D2984E66D764BB5047E708FE6E7746 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; - 663CE6D8AD41240D4B641A0532EC54CA /* Pods-basic_app-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F6A95D258718B06236098D57FAB1DB7 /* Pods-basic_app-dummy.m */; }; - 7504A97A8BA175E6ACE5279F2483842C /* Pods-basic_app-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 64109BD66960EDE27702DFC34511DA68 /* Pods-basic_app-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F64303CD9D54BC4C6363BBAC6D07920D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5251E0C4CF3F9AF15A1A0F6C09403D74 /* PrivacyInfo.xcprivacy */; }; + 65F2388DB15DC6F1C1856B2553695484 /* Pods-basic_app-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F6A95D258718B06236098D57FAB1DB7 /* Pods-basic_app-dummy.m */; }; + 9C072C663D6E73D814E430CB9E3D7E7C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 61B9254DED8F7A045F9CD5CCEAB842D0 /* PrivacyInfo.xcprivacy */; }; + BECBBF3ADAEFCFF1E81B4FA6EC65BB54 /* Pods-basic_app-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 64109BD66960EDE27702DFC34511DA68 /* Pods-basic_app-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6E3FF16F77B13C91332B1BB1BF06D8B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - A3E6E2A5352FCBE3518245AC82FF8D18 /* PBXContainerItemProxy */ = { + 53571F0E6DCCBA5E8BA3387C902129D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B0B23938B1EBCBAD2419AB6E9D222A0B; - remoteInfo = AppsFlyerFramework; + remoteGlobalIDString = 99045CCC9CD957A6CB0B3ABABE5AD33F; + remoteInfo = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; }; - E5EB373D690748B9823A24084AC6AB27 /* PBXContainerItemProxy */ = { + DB5A55ED4768C1B26CA676B5A8C05CED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C1B7E9FCC674E977BE2D38FC2709798C; - remoteInfo = "AppsFlyerFramework-AppsFlyerLib_Privacy"; + remoteGlobalIDString = DC8EA6044CA5863FC877AD630190FA53; + remoteInfo = "appsflyer-apple-sdk-qa"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 078FA116C3BD08BEA58CF0F83C345289 /* appsflyer-apple-sdk-qa-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "appsflyer-apple-sdk-qa-xcframeworks.sh"; sourceTree = ""; }; 0871595435DDCDCF122E97AC8A28A0E9 /* Pods-basic_app.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-basic_app.debug.xcconfig"; sourceTree = ""; }; 0F6A95D258718B06236098D57FAB1DB7 /* Pods-basic_app-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-basic_app-dummy.m"; sourceTree = ""; }; - 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppsFlyerFramework.debug.xcconfig; sourceTree = ""; }; 14A0E4087B29EAF624586FB6A272D350 /* Pods-basic_app-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-basic_app-acknowledgements.markdown"; sourceTree = ""; }; + 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "appsflyer-apple-sdk-qa.release.xcconfig"; sourceTree = ""; }; 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 39B61534E7922D12F2D6396D414D9E5A /* Pods-basic_app-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-basic_app-resources.sh"; sourceTree = ""; }; - 3FBF5F99E360E2F829E6500A317D769F /* AppsFlyerLib.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppsFlyerLib.xcframework; path = binaries/xcframework/full/AppsFlyerLib.xcframework; sourceTree = ""; }; - 5251E0C4CF3F9AF15A1A0F6C09403D74 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = binaries/Resources/nonStrict/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 43D716ADFCCB6C105A6AD67F85653C1B /* ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist"; sourceTree = ""; }; + 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "appsflyer-apple-sdk-qa.debug.xcconfig"; sourceTree = ""; }; + 61B9254DED8F7A045F9CD5CCEAB842D0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = binaries/Resources/nonStrict/PrivacyInfo.xcprivacy; sourceTree = ""; }; 62DFE431D91E9110F349AF576E550A4F /* Pods-basic_app */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-basic_app"; path = Pods_basic_app.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 64109BD66960EDE27702DFC34511DA68 /* Pods-basic_app-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-basic_app-umbrella.h"; sourceTree = ""; }; - 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppsFlyerFramework.release.xcconfig; sourceTree = ""; }; - 80209B761DE4413D162228D9258A3304 /* ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist"; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A1B3E68FFC94BDA62C4DD2BE731CD220 /* Pods-basic_app-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-basic_app-Info.plist"; sourceTree = ""; }; - A91654FE28DEE5FD7A86A4C359FC6516 /* AppsFlyerFramework-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "AppsFlyerFramework-xcframeworks.sh"; sourceTree = ""; }; + C05B7EC9678B6EFDE43118DBACC59D58 /* AppsFlyerLib.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppsFlyerLib.xcframework; path = binaries/xcframework/full/AppsFlyerLib.xcframework; sourceTree = ""; }; + C85A2D44C96F612F056A0836D7861C4B /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; path = AppsFlyerLib_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; CDA1309C420D4BECA110B717210BFEED /* Pods-basic_app-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-basic_app-acknowledgements.plist"; sourceTree = ""; }; D2D974BAC54A34EF84CBE35291A15742 /* Pods-basic_app.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-basic_app.modulemap"; sourceTree = ""; }; - DDEAD447247DFA15F1E4DB584614F80C /* AppsFlyerFramework-AppsFlyerLib_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "AppsFlyerFramework-AppsFlyerLib_Privacy"; path = AppsFlyerLib_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; EFA8C86FD89256F3DCE8C150791D6F6E /* Pods-basic_app.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-basic_app.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 2377A31BDF15EB40CD64575A4FF024D2 /* Frameworks */ = { + ACCDAC0B6683C38B2AB611A0B24E0B60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 23D2984E66D764BB5047E708FE6E7746 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2CB9409B0242EFE59A452CE54EE0BEDA /* Frameworks */ = { + AF2DFD97DA9B9D76868B2BB643227E23 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + F6E3FF16F77B13C91332B1BB1BF06D8B /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 039ECFF9EACC5A996C97E90862B20323 /* Main */ = { - isa = PBXGroup; - children = ( - 5C7DA19C265759D3B9E72854EF955646 /* Frameworks */, - B8FC24E218081A1370BCEA4C355D971A /* Resources */, - ); - name = Main; - sourceTree = ""; - }; 053C7A7653E87B55BDDEA4926EEF154A /* Pods-basic_app */ = { isa = PBXGroup; children = ( @@ -119,41 +110,68 @@ name = "Targets Support Files"; sourceTree = ""; }; - 28CDC1F6FA25BAE4D380F92E7E0D4C02 /* Support Files */ = { + 2CC048C9194A965B263D7A1780F0743E /* Main */ = { isa = PBXGroup; children = ( - A91654FE28DEE5FD7A86A4C359FC6516 /* AppsFlyerFramework-xcframeworks.sh */, - 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */, - 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */, - 80209B761DE4413D162228D9258A3304 /* ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist */, + 76DB97569836ECE4FB02999008E964C7 /* Frameworks */, + 2FA587CF7666D248A13618D472233ED9 /* Resources */, + ); + name = Main; + sourceTree = ""; + }; + 2FA587CF7666D248A13618D472233ED9 /* Resources */ = { + isa = PBXGroup; + children = ( + 61B9254DED8F7A045F9CD5CCEAB842D0 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 525D23EA4A7C4452566FB47E472D1053 /* Support Files */ = { + isa = PBXGroup; + children = ( + 078FA116C3BD08BEA58CF0F83C345289 /* appsflyer-apple-sdk-qa-xcframeworks.sh */, + 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */, + 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */, + 43D716ADFCCB6C105A6AD67F85653C1B /* ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/AppsFlyerFramework"; + path = "../Target Support Files/appsflyer-apple-sdk-qa"; sourceTree = ""; }; - 583A1449C5C2957DF1281496A21A7F30 /* Products */ = { + 6BB7F446E8D39735944EB5BCF766C88D /* Pods */ = { isa = PBXGroup; children = ( - DDEAD447247DFA15F1E4DB584614F80C /* AppsFlyerFramework-AppsFlyerLib_Privacy */, + 8518932A8D83B81F24492662A2FF1301 /* appsflyer-apple-sdk-qa */, + ); + name = Pods; + sourceTree = ""; + }; + 70DADC3E92C9F839ABCEF464B638745E /* Products */ = { + isa = PBXGroup; + children = ( + C85A2D44C96F612F056A0836D7861C4B /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */, 62DFE431D91E9110F349AF576E550A4F /* Pods-basic_app */, ); name = Products; sourceTree = ""; }; - 5C7DA19C265759D3B9E72854EF955646 /* Frameworks */ = { + 76DB97569836ECE4FB02999008E964C7 /* Frameworks */ = { isa = PBXGroup; children = ( - 3FBF5F99E360E2F829E6500A317D769F /* AppsFlyerLib.xcframework */, + C05B7EC9678B6EFDE43118DBACC59D58 /* AppsFlyerLib.xcframework */, ); name = Frameworks; sourceTree = ""; }; - B8FC24E218081A1370BCEA4C355D971A /* Resources */ = { + 8518932A8D83B81F24492662A2FF1301 /* appsflyer-apple-sdk-qa */ = { isa = PBXGroup; children = ( - 5251E0C4CF3F9AF15A1A0F6C09403D74 /* PrivacyInfo.xcprivacy */, + 2CC048C9194A965B263D7A1780F0743E /* Main */, + 525D23EA4A7C4452566FB47E472D1053 /* Support Files */, ); - name = Resources; + name = "appsflyer-apple-sdk-qa"; + path = "appsflyer-apple-sdk-qa"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -161,8 +179,8 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, - F8C7C2E6058A1A7AA06352E1A89839CF /* Pods */, - 583A1449C5C2957DF1281496A21A7F30 /* Products */, + 6BB7F446E8D39735944EB5BCF766C88D /* Pods */, + 70DADC3E92C9F839ABCEF464B638745E /* Products */, 2893E5CD51DD265C9B4A4BA1730F518F /* Targets Support Files */, ); sourceTree = ""; @@ -183,68 +201,50 @@ name = iOS; sourceTree = ""; }; - EB6D1F84989BBA77CEEC0973022CB777 /* AppsFlyerFramework */ = { - isa = PBXGroup; - children = ( - 039ECFF9EACC5A996C97E90862B20323 /* Main */, - 28CDC1F6FA25BAE4D380F92E7E0D4C02 /* Support Files */, - ); - name = AppsFlyerFramework; - path = AppsFlyerFramework; - sourceTree = ""; - }; - F8C7C2E6058A1A7AA06352E1A89839CF /* Pods */ = { - isa = PBXGroup; - children = ( - EB6D1F84989BBA77CEEC0973022CB777 /* AppsFlyerFramework */, - ); - name = Pods; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 22E071AB95431E9F23796384E5F4C872 /* Headers */ = { + 92E12585ED6FE17D99F3360439D4C7E1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7504A97A8BA175E6ACE5279F2483842C /* Pods-basic_app-umbrella.h in Headers */, + BECBBF3ADAEFCFF1E81B4FA6EC65BB54 /* Pods-basic_app-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - C1B7E9FCC674E977BE2D38FC2709798C /* AppsFlyerFramework-AppsFlyerLib_Privacy */ = { + 99045CCC9CD957A6CB0B3ABABE5AD33F /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 0BEAAA6B0E2E6FB880427C16EC0CED01 /* Build configuration list for PBXNativeTarget "AppsFlyerFramework-AppsFlyerLib_Privacy" */; + buildConfigurationList = 8D13B5EA2D12B4C81E560707B7360EEE /* Build configuration list for PBXNativeTarget "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy" */; buildPhases = ( - E32D039672D2424CEF8A39C401A0B1F1 /* Sources */, - 2CB9409B0242EFE59A452CE54EE0BEDA /* Frameworks */, - 94544A3B597A99F6BD8FA6D6D407DE04 /* Resources */, + 4DDA47618E45E5B7B44E3F4FF484148A /* Sources */, + ACCDAC0B6683C38B2AB611A0B24E0B60 /* Frameworks */, + 402CFAD22FA738785837E662D1521D75 /* Resources */, ); buildRules = ( ); dependencies = ( ); - name = "AppsFlyerFramework-AppsFlyerLib_Privacy"; + name = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; productName = AppsFlyerLib_Privacy; - productReference = DDEAD447247DFA15F1E4DB584614F80C /* AppsFlyerFramework-AppsFlyerLib_Privacy */; + productReference = C85A2D44C96F612F056A0836D7861C4B /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */; productType = "com.apple.product-type.bundle"; }; CFC355FF18F0529D4F3D34A9A2CE6E7F /* Pods-basic_app */ = { isa = PBXNativeTarget; - buildConfigurationList = 5CC24E68768E47142535D4326F58CA29 /* Build configuration list for PBXNativeTarget "Pods-basic_app" */; + buildConfigurationList = 4BABCA8E1C75AE1E43E67DA5773DE820 /* Build configuration list for PBXNativeTarget "Pods-basic_app" */; buildPhases = ( - 22E071AB95431E9F23796384E5F4C872 /* Headers */, - DD3B50427F513E5788983EE7562E55A0 /* Sources */, - 2377A31BDF15EB40CD64575A4FF024D2 /* Frameworks */, - 123B50456E8DC7AD38C4536DEF64A439 /* Resources */, + 92E12585ED6FE17D99F3360439D4C7E1 /* Headers */, + A3ED82E6BC0B08CF40EF7540916BF1AA /* Sources */, + AF2DFD97DA9B9D76868B2BB643227E23 /* Frameworks */, + 4AD687EAA64EFCEE08AF1678F7607A18 /* Resources */, ); buildRules = ( ); dependencies = ( - 14A745FAF91EF933D306FA9CBFC30E24 /* PBXTargetDependency */, + CF7BBEBBE9F62506838E53FFB2B55338 /* PBXTargetDependency */, ); name = "Pods-basic_app"; productName = Pods_basic_app; @@ -271,90 +271,107 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = 583A1449C5C2957DF1281496A21A7F30 /* Products */; + productRefGroup = 70DADC3E92C9F839ABCEF464B638745E /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - B0B23938B1EBCBAD2419AB6E9D222A0B /* AppsFlyerFramework */, - C1B7E9FCC674E977BE2D38FC2709798C /* AppsFlyerFramework-AppsFlyerLib_Privacy */, + DC8EA6044CA5863FC877AD630190FA53 /* appsflyer-apple-sdk-qa */, + 99045CCC9CD957A6CB0B3ABABE5AD33F /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */, CFC355FF18F0529D4F3D34A9A2CE6E7F /* Pods-basic_app */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 123B50456E8DC7AD38C4536DEF64A439 /* Resources */ = { + 402CFAD22FA738785837E662D1521D75 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9C072C663D6E73D814E430CB9E3D7E7C /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 94544A3B597A99F6BD8FA6D6D407DE04 /* Resources */ = { + 4AD687EAA64EFCEE08AF1678F7607A18 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - F64303CD9D54BC4C6363BBAC6D07920D /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - DB7C100E6D7A5CF954757DB8962D9B72 /* [CP] Copy XCFrameworks */ = { + AE5DE945C03625EC7599F5C8A0E63B92 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/appsflyer-apple-sdk-qa/appsflyer-apple-sdk-qa-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/appsflyer-apple-sdk-qa/appsflyer-apple-sdk-qa-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/appsflyer-apple-sdk-qa/appsflyer-apple-sdk-qa-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - DD3B50427F513E5788983EE7562E55A0 /* Sources */ = { + 4DDA47618E45E5B7B44E3F4FF484148A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 663CE6D8AD41240D4B641A0532EC54CA /* Pods-basic_app-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E32D039672D2424CEF8A39C401A0B1F1 /* Sources */ = { + A3ED82E6BC0B08CF40EF7540916BF1AA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 65F2388DB15DC6F1C1856B2553695484 /* Pods-basic_app-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 14A745FAF91EF933D306FA9CBFC30E24 /* PBXTargetDependency */ = { + 018267DC3087672373E15B51F9D6078D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = AppsFlyerFramework; - target = B0B23938B1EBCBAD2419AB6E9D222A0B /* AppsFlyerFramework */; - targetProxy = A3E6E2A5352FCBE3518245AC82FF8D18 /* PBXContainerItemProxy */; + name = "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy"; + target = 99045CCC9CD957A6CB0B3ABABE5AD33F /* appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy */; + targetProxy = 53571F0E6DCCBA5E8BA3387C902129D2 /* PBXContainerItemProxy */; }; - E34636818F08D5E85E932E2A0C0ECBC4 /* PBXTargetDependency */ = { + CF7BBEBBE9F62506838E53FFB2B55338 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "AppsFlyerFramework-AppsFlyerLib_Privacy"; - target = C1B7E9FCC674E977BE2D38FC2709798C /* AppsFlyerFramework-AppsFlyerLib_Privacy */; - targetProxy = E5EB373D690748B9823A24084AC6AB27 /* PBXContainerItemProxy */; + name = "appsflyer-apple-sdk-qa"; + target = DC8EA6044CA5863FC877AD630190FA53 /* appsflyer-apple-sdk-qa */; + targetProxy = DB5A55ED4768C1B26CA676B5A8C05CED /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 0C37C0C026D73ECDD6425A2DD40E02CD /* Release */ = { + 0C85BE14ED77B4E52B874303D250B9B5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/appsflyer-apple-sdk-qa"; + IBSC_MODULE = appsflyer_apple_sdk_qa; + INFOPLIST_FILE = "Target Support Files/appsflyer-apple-sdk-qa/ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = AppsFlyerLib_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 4F8AEB39C2333BB48F787F9F0A5FB6E1 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = EFA8C86FD89256F3DCE8C150791D6F6E /* Pods-basic_app.release.xcconfig */; buildSettings = { @@ -394,59 +411,45 @@ }; name = Release; }; - 4A23F1203421E4CF6B79B43E8332B863 /* Release */ = { + 53D4154B4585AFE0D202E5DE33113E0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */; + baseConfigurationReference = 0871595435DDCDCF122E97AC8A28A0E9 /* Pods-basic_app.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + INFOPLIST_FILE = "Target Support Files/Pods-basic_app/Pods-basic_app-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 6C708079E1BEDE0845192D5464CF4B22 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppsFlyerFramework"; - IBSC_MODULE = AppsFlyerFramework; - INFOPLIST_FILE = "Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = AppsFlyerLib_Privacy; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-basic_app/Pods-basic_app.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 7BDF77E73CEA4A5C3559D60310F0B882 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7122EA59512A282F832A89A97B9779B9 /* AppsFlyerFramework.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppsFlyerFramework"; - IBSC_MODULE = AppsFlyerFramework; - INFOPLIST_FILE = "Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = AppsFlyerLib_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -513,9 +516,9 @@ }; name = Debug; }; - 99A6E2A2C1D500617DAAC7110C82BDEE /* Debug */ = { + 92D35167A4E3660EC7F96DB8F42370F2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1267B4FA2F77551273EE254EB3AEC85F /* AppsFlyerFramework.debug.xcconfig */; + baseConfigurationReference = 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -528,8 +531,26 @@ ); SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; + }; + 97B9505AE2AC63F6607498A686612CBF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 368A02D44D301CE6BF197A3EAEE0F9B5 /* appsflyer-apple-sdk-qa.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/appsflyer-apple-sdk-qa"; + IBSC_MODULE = appsflyer_apple_sdk_qa; + INFOPLIST_FILE = "Target Support Files/appsflyer-apple-sdk-qa/ResourceBundle-AppsFlyerLib_Privacy-appsflyer-apple-sdk-qa-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = AppsFlyerLib_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; }; 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; @@ -593,80 +614,59 @@ }; name = Release; }; - D57F5C3C442CE693715F0A5D241DBBED /* Debug */ = { + A6EBF45ECE95AEBFEEE50D5D82AE53A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0871595435DDCDCF122E97AC8A28A0E9 /* Pods-basic_app.debug.xcconfig */; + baseConfigurationReference = 466E66792404BAC39114D98A2C143153 /* appsflyer-apple-sdk-qa.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-basic_app/Pods-basic_app-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-basic_app/Pods-basic_app.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0BEAAA6B0E2E6FB880427C16EC0CED01 /* Build configuration list for PBXNativeTarget "AppsFlyerFramework-AppsFlyerLib_Privacy" */ = { + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6C708079E1BEDE0845192D5464CF4B22 /* Debug */, - 7BDF77E73CEA4A5C3559D60310F0B882 /* Release */, + 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */, + 9E406C6AAF85E580207CD97B0044DEAB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + 4BABCA8E1C75AE1E43E67DA5773DE820 /* Build configuration list for PBXNativeTarget "Pods-basic_app" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */, - 9E406C6AAF85E580207CD97B0044DEAB /* Release */, + 53D4154B4585AFE0D202E5DE33113E0C /* Debug */, + 4F8AEB39C2333BB48F787F9F0A5FB6E1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5CC24E68768E47142535D4326F58CA29 /* Build configuration list for PBXNativeTarget "Pods-basic_app" */ = { + 4EEFA0CC69387CAA580E20FDAE78D835 /* Build configuration list for PBXAggregateTarget "appsflyer-apple-sdk-qa" */ = { isa = XCConfigurationList; buildConfigurations = ( - D57F5C3C442CE693715F0A5D241DBBED /* Debug */, - 0C37C0C026D73ECDD6425A2DD40E02CD /* Release */, + A6EBF45ECE95AEBFEEE50D5D82AE53A3 /* Debug */, + 92D35167A4E3660EC7F96DB8F42370F2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 71B9A5BD1FADAE479D403809E582EC07 /* Build configuration list for PBXAggregateTarget "AppsFlyerFramework" */ = { + 8D13B5EA2D12B4C81E560707B7360EEE /* Build configuration list for PBXNativeTarget "appsflyer-apple-sdk-qa-AppsFlyerLib_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 99A6E2A2C1D500617DAAC7110C82BDEE /* Debug */, - 4A23F1203421E4CF6B79B43E8332B863 /* Release */, + 0C85BE14ED77B4E52B874303D250B9B5 /* Debug */, + 97B9505AE2AC63F6607498A686612CBF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist b/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist deleted file mode 100644 index 0b35988..0000000 --- a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-input-files.xcfilelist +++ /dev/null @@ -1,2 +0,0 @@ -${PODS_ROOT}/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh -${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework \ No newline at end of file diff --git a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist b/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist deleted file mode 100644 index 44f01e9..0000000 --- a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks-output-files.xcfilelist +++ /dev/null @@ -1 +0,0 @@ -${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main/AppsFlyerLib.framework \ No newline at end of file diff --git a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh b/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh deleted file mode 100755 index f6da365..0000000 --- a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework-xcframeworks.sh +++ /dev/null @@ -1,145 +0,0 @@ -#!/bin/sh -set -e -set -u -set -o pipefail - -function on_error { - echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" -} -trap 'on_error $LINENO' ERR - - -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - - -variant_for_slice() -{ - case "$1" in - "AppsFlyerLib.xcframework/ios-arm64") - echo "" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst") - echo "maccatalyst" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator") - echo "simulator" - ;; - "AppsFlyerLib.xcframework/macos-arm64_x86_64") - echo "" - ;; - "AppsFlyerLib.xcframework/tvos-arm64") - echo "" - ;; - "AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator") - echo "simulator" - ;; - esac -} - -archs_for_slice() -{ - case "$1" in - "AppsFlyerLib.xcframework/ios-arm64") - echo "arm64" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-maccatalyst") - echo "arm64 x86_64" - ;; - "AppsFlyerLib.xcframework/ios-arm64_x86_64-simulator") - echo "arm64 x86_64" - ;; - "AppsFlyerLib.xcframework/macos-arm64_x86_64") - echo "arm64 x86_64" - ;; - "AppsFlyerLib.xcframework/tvos-arm64") - echo "arm64" - ;; - "AppsFlyerLib.xcframework/tvos-arm64_x86_64-simulator") - echo "arm64 x86_64" - ;; - esac -} - -copy_dir() -{ - local source="$1" - local destination="$2" - - # Use filter instead of exclude so missing patterns don't throw errors. - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" \"${source}*\" \"${destination}\"" - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" "${source}"/* "${destination}" -} - -SELECT_SLICE_RETVAL="" - -select_slice() { - local xcframework_name="$1" - xcframework_name="${xcframework_name##*/}" - local paths=("${@:2}") - # Locate the correct slice of the .xcframework for the current architectures - local target_path="" - - # Split archs on space so we can find a slice that has all the needed archs - local target_archs=$(echo $ARCHS | tr " " "\n") - - local target_variant="" - if [[ "$PLATFORM_NAME" == *"simulator" ]]; then - target_variant="simulator" - fi - if [[ ! -z ${EFFECTIVE_PLATFORM_NAME+x} && "$EFFECTIVE_PLATFORM_NAME" == *"maccatalyst" ]]; then - target_variant="maccatalyst" - fi - for i in ${!paths[@]}; do - local matched_all_archs="1" - local slice_archs="$(archs_for_slice "${xcframework_name}/${paths[$i]}")" - local slice_variant="$(variant_for_slice "${xcframework_name}/${paths[$i]}")" - for target_arch in $target_archs; do - if ! [[ "${slice_variant}" == "$target_variant" ]]; then - matched_all_archs="0" - break - fi - - if ! echo "${slice_archs}" | tr " " "\n" | grep -F -q -x "$target_arch"; then - matched_all_archs="0" - break - fi - done - - if [[ "$matched_all_archs" == "1" ]]; then - # Found a matching slice - echo "Selected xcframework slice ${paths[$i]}" - SELECT_SLICE_RETVAL=${paths[$i]} - break - fi - done -} - -install_xcframework() { - local basepath="$1" - local name="$2" - local package_type="$3" - local paths=("${@:4}") - - # Locate the correct slice of the .xcframework for the current architectures - select_slice "${basepath}" "${paths[@]}" - local target_path="$SELECT_SLICE_RETVAL" - if [[ -z "$target_path" ]]; then - echo "warning: [CP] $(basename ${basepath}): Unable to find matching slice in '${paths[@]}' for the current build architectures ($ARCHS) and platform (${EFFECTIVE_PLATFORM_NAME-${PLATFORM_NAME}})." - return - fi - local source="$basepath/$target_path" - - local destination="${PODS_XCFRAMEWORKS_BUILD_DIR}/${name}" - - if [ ! -d "$destination" ]; then - mkdir -p "$destination" - fi - - copy_dir "$source/" "$destination" - echo "Copied $source to $destination" -} - -install_xcframework "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full/AppsFlyerLib.xcframework" "AppsFlyerFramework/Main" "framework" "ios-arm64" "ios-arm64_x86_64-maccatalyst" "ios-arm64_x86_64-simulator" - diff --git a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.debug.xcconfig b/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.debug.xcconfig deleted file mode 100644 index c71e124..0000000 --- a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.debug.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppsFlyerFramework -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.release.xcconfig b/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.release.xcconfig deleted file mode 100644 index c71e124..0000000 --- a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/AppsFlyerFramework.release.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppsFlyerFramework -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist b/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist deleted file mode 100644 index b8b3c3f..0000000 --- a/swift/basic_app/Pods/Target Support Files/AppsFlyerFramework/ResourceBundle-AppsFlyerLib_Privacy-AppsFlyerFramework-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 6.16.2 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.markdown b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.markdown index d8da5ce..c440549 100644 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.markdown +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.markdown @@ -1,7 +1,7 @@ # Acknowledgements This application makes use of the following third party libraries: -## AppsFlyerFramework +## appsflyer-apple-sdk-qa Copyright 2018 AppsFlyer Ltd. All rights reserved. Generated by CocoaPods - https://cocoapods.org diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.plist b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.plist index 38fa78d..39b757b 100644 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.plist +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-acknowledgements.plist @@ -18,7 +18,7 @@ License Proprietary Title - AppsFlyerFramework + appsflyer-apple-sdk-qa Type PSGroupSpecifier
diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Debug-input-files.xcfilelist b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Debug-input-files.xcfilelist index e6cfa37..ce169f6 100644 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Debug-input-files.xcfilelist +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Debug-input-files.xcfilelist @@ -1,2 +1,2 @@ ${PODS_ROOT}/Target Support Files/Pods-basic_app/Pods-basic_app-resources.sh -${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle \ No newline at end of file +${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle \ No newline at end of file diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Release-input-files.xcfilelist b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Release-input-files.xcfilelist index e6cfa37..ce169f6 100644 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Release-input-files.xcfilelist +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources-Release-input-files.xcfilelist @@ -1,2 +1,2 @@ ${PODS_ROOT}/Target Support Files/Pods-basic_app/Pods-basic_app-resources.sh -${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle \ No newline at end of file +${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle \ No newline at end of file diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources.sh b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources.sh index 230cc85..1934ba3 100755 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources.sh +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app-resources.sh @@ -97,10 +97,10 @@ EOM esac } if [[ "$CONFIGURATION" == "Debug" ]]; then - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle" + install_resource "${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework/AppsFlyerLib_Privacy.bundle" + install_resource "${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa/AppsFlyerLib_Privacy.bundle" fi mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.debug.xcconfig b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.debug.xcconfig index 87463f9..5601b54 100644 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.debug.xcconfig +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/appsflyer-apple-sdk-qa/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/appsflyer-apple-sdk-qa/Main" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -ObjC -framework "AppsFlyerLib" -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.release.xcconfig b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.release.xcconfig index 87463f9..5601b54 100644 --- a/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.release.xcconfig +++ b/swift/basic_app/Pods/Target Support Files/Pods-basic_app/Pods-basic_app.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AppsFlyerFramework/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppsFlyerFramework/Main" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/appsflyer-apple-sdk-qa/binaries/xcframework/full" "${PODS_XCFRAMEWORKS_BUILD_DIR}/appsflyer-apple-sdk-qa/Main" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -ObjC -framework "AppsFlyerLib" -framework "CoreTelephony" -framework "Security" -framework "SystemConfiguration" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AppsFlyerFramework" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/appsflyer-apple-sdk-qa" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/swift/basic_app/basic_app/AppDelegate.swift b/swift/basic_app/basic_app/AppDelegate.swift index fdf017c..71b7ef0 100644 --- a/swift/basic_app/basic_app/AppDelegate.swift +++ b/swift/basic_app/basic_app/AppDelegate.swift @@ -17,50 +17,50 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var deferred_deep_link_processed_flag:Bool = false func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { - - // Set isDebug to true to see AppsFlyer debug logs + + // MARK: - [Matrix flag] Debug logs AppsFlyerLib.shared().isDebug = true - + // Replace 'appsFlyerDevKey', `appleAppID` with your DevKey, Apple App ID - AppsFlyerLib.shared().appsFlyerDevKey = "sQ84wpdxRTR4RMCaE9YqS4" - AppsFlyerLib.shared().appleAppID = "1512793879" - - AppsFlyerLib.shared().waitForATTUserAuthorization(timeoutInterval: 60) - + AppsFlyerLib.shared().initialize(devKey: "sQ84wpdxRTR4RMCaE9YqS4", appId: "1512793879") + + // MARK: - [Matrix flag] Customer User ID (CUID) + AppsFlyerLib.shared().customerUserID = "my user id" + AppsFlyerLib.shared().delegate = self AppsFlyerLib.shared().deepLinkDelegate = self - - //set the OneLink template id for share invite links AppsFlyerLib.shared().appInviteOneLinkID = "H5hv" - - // Subscribe to didBecomeActiveNotification if you use SceneDelegate or just call - // -[AppsFlyerLib start] from -[AppDelegate applicationDidBecomeActive:] - NotificationCenter.default.addObserver(self, selector: #selector(didBecomeActiveNotification), - // For Swift version < 4.2 replace name argument with the commented out code - name: UIApplication.didBecomeActiveNotification, //.UIApplicationDidBecomeActive for Swift < 4.2 - object: nil) - - return true - } - - @objc func didBecomeActiveNotification() { - AppsFlyerLib.shared().start() - if #available(iOS 14, *) { - ATTrackingManager.requestTrackingAuthorization { (status) in - switch status { - case .denied: - print("AuthorizationStatus is denied") - case .notDetermined: - print("AuthorizationStatus is notDetermined") - case .restricted: - print("AuthorizationStatus is restricted") - case .authorized: - print("AuthorizationStatus is authorized") - @unknown default: - fatalError("Invalid authorization status") + + // Required before registerSessionReadyListener. In iOS 13+ scene apps, + // UL/URI cold-launch payloads are NOT in launchOptions — they arrive via + // connectionOptions in SceneDelegate, so the two paths don't double-fire. + AppsFlyerLib.shared().handleLaunchOptions(launchOptions) + + // MARK: - [Matrix flag] Session-ready listener (v7 default spine) + AppsFlyerLib.shared().registerSessionReadyListener { + // MARK: - [Matrix flag] ATT + if #available(iOS 14, *) { + ATTrackingManager.requestTrackingAuthorization { _ in + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } + } + } else { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK] start failed: \(error)") + return + } + NSLog("[AFSDK] start succeeded: \(dictionary ?? [:])") + } } - } } + + return true } // Open Universal Links @@ -101,7 +101,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { } } -extension AppDelegate: DeepLinkDelegate { +extension AppDelegate: AppsFlyerDeepLinkDelegate { func didResolveDeepLink(_ result: DeepLinkResult) { var fruitNameStr: String? @@ -110,7 +110,7 @@ extension AppDelegate: DeepLinkDelegate { NSLog("[AFSDK] Deep link not found") return case .failure: - print("Error %@", result.error!) + NSLog("[AFSDK] Deep link error: \(String(describing: result.error))") return case .found: NSLog("[AFSDK] Deep link found") @@ -121,12 +121,9 @@ extension AppDelegate: DeepLinkDelegate { return } - if deepLinkObj.clickEvent.keys.contains("deep_link_sub2") { - let ReferrerId:String = deepLinkObj.clickEvent["deep_link_sub2"] as! String - NSLog("[AFSDK] AppsFlyer: Referrer ID: \(ReferrerId)") - } else { - NSLog("[AFSDK] Could not extract referrerId") - } + if let referrerId = deepLinkObj.clickEvent["deep_link_sub2"] as? String { + NSLog("[AFSDK] AppsFlyer: Referrer ID: \(referrerId)") + } let deepLinkStr:String = deepLinkObj.toString() NSLog("[AFSDK] DeepLink data is: \(deepLinkStr)") @@ -197,14 +194,9 @@ extension AppDelegate: AppsFlyerLibDelegate { deferred_deep_link_processed_flag = true - var fruitNameStr:String - - if conversionData.keys.contains("deep_link_value") { - fruitNameStr = conversionData["deep_link_value"] as! String - } else if conversionData.keys.contains("fruit_name") { - fruitNameStr = conversionData["fruit_name"] as! String - } else { - NSLog("Could not extract deep_link_value or fruit_name from deep link object using conversion data") + guard let fruitNameStr = (conversionData["deep_link_value"] as? String) + ?? (conversionData["fruit_name"] as? String) else { + NSLog("[AFSDK] Could not extract deep_link_value or fruit_name from conversion data") return } diff --git a/swift/basic_app/basic_app/ApplesViewController.swift b/swift/basic_app/basic_app/ApplesViewController.swift index 0756791..79720b5 100644 --- a/swift/basic_app/basic_app/ApplesViewController.swift +++ b/swift/basic_app/basic_app/ApplesViewController.swift @@ -15,8 +15,6 @@ class ApplesViewController: DLViewController { override func viewDidLoad() { super.viewDidLoad() - // Do any additional setup after loading the view. - if (deepLinkData != nil) { applesDlTextView.attributedText = attributionDataToString(data: deepLinkData!) applesDlTextView.textColor = .label diff --git a/swift/basic_app/basic_app/DLViewController.swift b/swift/basic_app/basic_app/DLViewController.swift index 2faded8..1fdbcee 100644 --- a/swift/basic_app/basic_app/DLViewController.swift +++ b/swift/basic_app/basic_app/DLViewController.swift @@ -14,10 +14,6 @@ class DLViewController: UIViewController { var deepLinkData: [String: Any]? = nil var fruitAmountStr: String = "000" - override func viewDidLoad() { - super.viewDidLoad() - } - func attributionDataToString(data : [String: Any]) -> NSMutableAttributedString { let newString = NSMutableAttributedString() let boldAttribute = [ @@ -28,7 +24,6 @@ class DLViewController: UIViewController { ] let sortedKeys = Array(data.keys).sorted(by: <) for key in sortedKeys { - print("ViewController", key, ":",data[key] ?? "null") let keyStr = key let boldKeyStr = NSAttributedString(string: keyStr, attributes: boldAttribute) newString.append(boldKeyStr) @@ -69,7 +64,7 @@ class DLViewController: UIViewController { } func copyShareInviteLink(fruitName: String){ - AppsFlyerShareInviteHelper.generateInviteUrl(linkGenerator: + AppsFlyerShareInviteHelper.generateInviteLink(linkGenerator: {(_ generator: AppsFlyerLinkGenerator) -> AppsFlyerLinkGenerator in generator.addParameterValue(fruitName, forKey: "deep_link_value") generator.addParameterValue(self.fruitAmountStr, forKey: "deep_link_sub1") @@ -77,7 +72,11 @@ class DLViewController: UIViewController { generator.setCampaign("share_invite") generator.setChannel("mobile_share") return generator }, - completionHandler: {(_ url: URL?) -> Void in + completionHandler: {(_ url: URL?, _ error: Error?) -> Void in + if let error = error { + NSLog("[AFSDK] generateInviteLink failed: \(error)") + return + } if url != nil{ //Copy url to clipboard UIPasteboard.general.string = (url!.absoluteString) @@ -86,7 +85,7 @@ class DLViewController: UIViewController { self.showToast(message: "Link copied to clipboard", font: .systemFont(ofSize: 12.0)) } AppsFlyerShareInviteHelper.logInvite("mobile_share", - parameters: ["referrerId": "THIS_USER_ID", + eventParameters: ["referrerId": "THIS_USER_ID", "campaign": "share_invite"]) } else{ @@ -101,11 +100,9 @@ class DLViewController: UIViewController { var fruitAmount: Any? if keys.contains("deep_link_value") && keys.contains("deep_link_sub1"){ fruitAmount = data["deep_link_sub1"] - NSLog("deep_link_sub1 found and is \(fruitAmount!)") } else if keys.contains("fruit_name") && keys.contains("fruit_amount"){ fruitAmount = data["fruit_amount"] - NSLog("fruit_amount found and is \(fruitAmount!)") } else { NSLog("deep_link_sub1/fruit_amount not found") diff --git a/swift/basic_app/basic_app/SceneDelegate.swift b/swift/basic_app/basic_app/SceneDelegate.swift index 63d62b0..95764b5 100644 --- a/swift/basic_app/basic_app/SceneDelegate.swift +++ b/swift/basic_app/basic_app/SceneDelegate.swift @@ -2,82 +2,37 @@ // SceneDelegate.swift // basic_app // -// Created by Liaz Kamper on 11/05/2020. -// Copyright © 2020 OneLink. All rights reserved. +// v7 SceneDelegate flag: deep-link routing only. +// No NotificationCenter.didBecomeActive observer — registerSessionReadyListener +// is the SDK's official timing gate. See docs/integration-matrix/migration/v6-to-v7.md. // import UIKit import AppsFlyerLib - +// MARK: - [Matrix flag] SceneDelegate class SceneDelegate: UIResponder, UIWindowSceneDelegate { var window: UIWindow? - - func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { - NSLog("[AFSDK] 1. %@", "scene with Universal Link") - // Universal Link - Background -> foreground - AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) - } - - func scene(_ scene: UIScene, openURLContexts URLContexts: Set) { - // Background -> foreground - NSLog("[AFSDK] 2. %@", "scene with URI scheme") - if let url = URLContexts.first?.url { - AppsFlyerLib.shared().handleOpen(url, options: nil) - } - } - func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { - NSLog("[AFSDK] 3. %@", "Deep Linking from killed state") - - // URI scheme - killed -> foreground - - // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. - // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. - // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). - -// // Processing Universal Link from the killed state + func scene(_ scene: UIScene, + willConnectTo session: UISceneSession, + options connectionOptions: UIScene.ConnectionOptions) { if let userActivity = connectionOptions.userActivities.first { - NSLog("[AFSDK] 4. Processing Universal Link from the killed state") AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) - } else if let url = connectionOptions.urlContexts.first?.url { - NSLog("[AFSDK] 5. Processing URI scheme from the killed state") - AppsFlyerLib.shared().handleOpen(url, options: nil) } -// // Processing URI-scheme from the killed state -// self.scene(scene, openURLContexts: connectionOptions.urlContexts) - guard let _ = (scene as? UIWindowScene) else { return } - } - - func sceneDidDisconnect(_ scene: UIScene) { - // Called as the scene is being released by the system. - // This occurs shortly after the scene enters the background, or when its session is discarded. - // Release any resources associated with this scene that can be re-created the next time the scene connects. - // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead). - } - - func sceneDidBecomeActive(_ scene: UIScene) { - // Called when the scene has moved from an inactive state to an active state. - // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. - } - - func sceneWillResignActive(_ scene: UIScene) { - // Called when the scene will move from an active state to an inactive state. - // This may occur due to temporary interruptions (ex. an incoming phone call). + for urlContext in connectionOptions.urlContexts { + AppsFlyerLib.shared().handleOpen(urlContext.url, options: nil) + } } - func sceneWillEnterForeground(_ scene: UIScene) { - // Called as the scene transitions from the background to the foreground. - // Use this method to undo the changes made on entering the background. + func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) } - func sceneDidEnterBackground(_ scene: UIScene) { - // Called as the scene transitions from the foreground to the background. - // Use this method to save data, release shared resources, and store enough scene-specific state information - // to restore the scene back to its current state. + func scene(_ scene: UIScene, openURLContexts URLContexts: Set) { + for context in URLContexts { + AppsFlyerLib.shared().handleOpen(context.url, options: nil) + } } - - } - diff --git a/swiftui/basic_app_swiftui/AppDelegate.swift b/swiftui/basic_app_swiftui/AppDelegate.swift new file mode 100644 index 0000000..c8c2343 --- /dev/null +++ b/swiftui/basic_app_swiftui/AppDelegate.swift @@ -0,0 +1,220 @@ +// +// AppDelegate.swift +// basic_app_swiftui +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import UIKit +import AppsFlyerLib +import AppTrackingTransparency + +@MainActor +final class AppDelegate: NSObject, UIApplicationDelegate, AppsFlyerLibDelegate, AppsFlyerDeepLinkDelegate { + + let appState = AppState() + + // Dedupes DDL between the UDL and GCD callback paths. + private var deferredDeepLinkProcessedFlag: Bool = false + + func application(_ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + + // MARK: - [Matrix flag] Debug logs + AppsFlyerLib.shared().isDebug = true + + AppsFlyerLib.shared().initialize(devKey: "sQ84wpdxRTR4RMCaE9YqS4", appId: "1512793879") + + // MARK: - [Matrix flag] Customer User ID (CUID) + AppsFlyerLib.shared().customerUserID = "my user id" + + AppsFlyerLib.shared().appInviteOneLinkID = "H5hv" + AppsFlyerLib.shared().delegate = self + AppsFlyerLib.shared().deepLinkDelegate = self + AppsFlyerLib.shared().handleLaunchOptions(launchOptions) + + // MARK: - [Matrix flag] Session-ready listener (v7 default spine) + AppsFlyerLib.shared().registerSessionReadyListener { + // MARK: - [Matrix flag] ATT + if #available(iOS 14, *) { + ATTrackingManager.requestTrackingAuthorization { _ in + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK-SwiftUI] start failed: \(error)") + return + } + NSLog("[AFSDK-SwiftUI] start succeeded: \(dictionary ?? [:])") + } + } + } else { + AppsFlyerLib.shared().start { (dictionary, error) in + if let error = error { + NSLog("[AFSDK-SwiftUI] start failed: \(error)") + return + } + NSLog("[AFSDK-SwiftUI] start succeeded: \(dictionary ?? [:])") + } + } + } + + return true + } + + // MARK: - Push attribution (re-engagement) + + func application(_ application: UIApplication, + didReceiveRemoteNotification userInfo: [AnyHashable: Any], + fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) { + AppsFlyerLib.shared().handlePushNotification(userInfo) + completionHandler(.noData) + } + + // MARK: - Direct deep linking (warm start) + // Without a UIApplicationSceneManifest in Info.plist, SwiftUI's + // .onOpenURL / .onContinueUserActivity modifiers don't fire — iOS routes + // URLs through the AppDelegate. Forward both to the SDK. + + func application(_ application: UIApplication, + continue userActivity: NSUserActivity, + restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) + return true + } + + func application(_ app: UIApplication, + open url: URL, + options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { + AppsFlyerLib.shared().handleOpen(url, options: options) + return true + } + + // MARK: - AppsFlyerDeepLinkDelegate + + // SDK can fire this off the main thread; bounce to MainActor for AppState writes. + nonisolated func didResolveDeepLink(_ result: DeepLinkResult) { + Task { @MainActor in + self.handleDeepLinkResult(result) + } + } + + private func handleDeepLinkResult(_ result: DeepLinkResult) { + switch result.status { + case .notFound: + NSLog("[AFSDK-SwiftUI] Deep link not found") + return + case .failure: + NSLog("[AFSDK-SwiftUI] Deep link failure: \(String(describing: result.error))") + return + case .found: + NSLog("[AFSDK-SwiftUI] Deep link found") + @unknown default: + NSLog("[AFSDK-SwiftUI] Deep link unknown status") + return + } + + guard let deepLinkObj = result.deepLink else { + NSLog("[AFSDK-SwiftUI] Could not extract deep link object") + return + } + + if let referrerId = deepLinkObj.clickEvent["deep_link_sub2"] as? String { + NSLog("[AFSDK-SwiftUI] Referrer ID: \(referrerId)") + } + + NSLog("[AFSDK-SwiftUI] DeepLink data is: \(deepLinkObj.toString())") + + if deepLinkObj.isDeferred { + NSLog("[AFSDK-SwiftUI] This is a deferred deep link") + if deferredDeepLinkProcessedFlag { + NSLog("[AFSDK-SwiftUI] DDL already processed by GCD — skipping UDL pass") + deferredDeepLinkProcessedFlag = false + return + } + } else { + NSLog("[AFSDK-SwiftUI] This is a direct deep link") + } + + // Resolve the value: prefer deep_link_value, fall back to fruit_name + var fruitNameStr: String? = deepLinkObj.deeplinkValue + if fruitNameStr == nil || fruitNameStr?.isEmpty == true { + fruitNameStr = deepLinkObj.clickEvent["fruit_name"] as? String + } + + // Mark for the GCD pass that UDL handled this + deferredDeepLinkProcessedFlag = true + + // Write into observable state — the view layer reacts + appState.deepLinkData = deepLinkObj.clickEvent + if let route = Route.fruit(from: fruitNameStr) { + appState.currentRoute = route + } else { + NSLog("[AFSDK-SwiftUI] Unknown deep_link_value/fruit_name: \(fruitNameStr ?? "nil")") + appState.currentRoute = nil + } + } + + // MARK: - AppsFlyerLibDelegate + + nonisolated func onConversionDataSuccess(_ data: [AnyHashable: Any]) { + Task { @MainActor in + self.handleConversionData(data) + } + } + + nonisolated func onConversionDataFail(_ error: Error) { + NSLog("[AFSDK-SwiftUI] Conversion data failed: \(error)") + } + + private func handleConversionData(_ data: [AnyHashable: Any]) { + let stringKeyed = data.reduce(into: [String: Any]()) { acc, pair in + if let k = pair.key as? String { acc[k] = pair.value } + } + appState.conversionData = stringKeyed + + guard let status = stringKeyed["af_status"] as? String else { + NSLog("[AFSDK-SwiftUI] Conversion data missing af_status") + return + } + + if status == "Non-organic" { + let source = stringKeyed["media_source"] ?? "?" + let campaign = stringKeyed["campaign"] ?? "?" + NSLog("[AFSDK-SwiftUI] Non-Organic install. media_source=\(source) campaign=\(campaign)") + } else { + NSLog("[AFSDK-SwiftUI] Organic install.") + } + + // Only run GCD-based deferred deep link routing on first launch + guard let isFirstLaunch = stringKeyed["is_first_launch"] as? Bool, isFirstLaunch else { + NSLog("[AFSDK-SwiftUI] Not first launch — skipping GCD routing") + return + } + + NSLog("[AFSDK-SwiftUI] First launch") + + if deferredDeepLinkProcessedFlag { + NSLog("[AFSDK-SwiftUI] DDL already processed by UDL — skipping GCD pass") + deferredDeepLinkProcessedFlag = false + return + } + deferredDeepLinkProcessedFlag = true + + // Only route via GCD if UDL did not already set a route + guard appState.currentRoute == nil else { + NSLog("[AFSDK-SwiftUI] Route already set by UDL — leaving as-is") + return + } + + let raw = (stringKeyed["deep_link_value"] as? String) ?? (stringKeyed["fruit_name"] as? String) + if let route = Route.fruit(from: raw) { + NSLog("[AFSDK-SwiftUI] Deferred deep link via conversion data → \(route)") + // Mirror UIKit sample behavior: pass the conversion payload to the + // fruit screen so it can render the same deep_link_value / sub1 / etc. + // that didResolveDeepLink would have provided on the direct path. + appState.deepLinkData = data + appState.currentRoute = route + } else { + NSLog("[AFSDK-SwiftUI] No deep_link_value/fruit_name in conversion data") + } + } +} diff --git a/swiftui/basic_app_swiftui/AppState.swift b/swiftui/basic_app_swiftui/AppState.swift new file mode 100644 index 0000000..8e85170 --- /dev/null +++ b/swiftui/basic_app_swiftui/AppState.swift @@ -0,0 +1,33 @@ +// +// AppState.swift +// basic_app_swiftui +// +// Single source of truth for the SwiftUI sample app. +// Written from delegate callbacks, observed by views. +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import Foundation +import Observation + +@MainActor +@Observable +final class AppState { + + /// Full conversion data payload from onConversionDataSuccess. + var conversionData: [String: Any]? = nil + + /// Resolved deep link clickEvent from didResolveDeepLink (.found). + var deepLinkData: [AnyHashable: Any]? = nil + + /// Drives NavigationStack(path:). Nil means root. + var currentRoute: Route? = nil + + /// Reset every observable property. Useful for "back to root" actions. + func reset() { + conversionData = nil + deepLinkData = nil + currentRoute = nil + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AccentColor.colorset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/1024.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/1024.png new file mode 100644 index 0000000..1b594fa Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/1024.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/114.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/114.png new file mode 100644 index 0000000..a166838 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/114.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/120-1.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/120-1.png new file mode 100644 index 0000000..f5a307c Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/120-1.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/120.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/120.png new file mode 100644 index 0000000..f5a307c Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/120.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/180.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/180.png new file mode 100644 index 0000000..b0a16b1 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/180.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/29.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/29.png new file mode 100644 index 0000000..dd2e233 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/29.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/40.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/40.png new file mode 100644 index 0000000..4598ed7 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/40.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/57.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/57.png new file mode 100644 index 0000000..f9fab0e Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/57.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/58.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/58.png new file mode 100644 index 0000000..05035f7 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/58.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/60.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/60.png new file mode 100644 index 0000000..66204e8 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/60.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/80.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/80.png new file mode 100644 index 0000000..aa5f5d6 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/80.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/87.png b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/87.png new file mode 100644 index 0000000..590f582 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/87.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..6c963a2 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,125 @@ +{ + "images" : [ + { + "filename" : "40.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "filename" : "60.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "filename" : "29.png", + "idiom" : "iphone", + "scale" : "1x", + "size" : "29x29" + }, + { + "filename" : "58.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "filename" : "87.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "filename" : "80.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "filename" : "120-1.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "filename" : "57.png", + "idiom" : "iphone", + "scale" : "1x", + "size" : "57x57" + }, + { + "filename" : "114.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "57x57" + }, + { + "filename" : "120.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "filename" : "180.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "filename" : "1024.png", + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/Conversion data button.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/Conversion data button.imageset/Contents.json new file mode 100644 index 0000000..464a2dd --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/Conversion data button.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Conversion data button.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/Conversion data button.imageset/Conversion data button.png b/swiftui/basic_app_swiftui/Assets.xcassets/Conversion data button.imageset/Conversion data button.png new file mode 100644 index 0000000..2101964 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/Conversion data button.imageset/Conversion data button.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/apples_cover.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/apples_cover.imageset/Contents.json new file mode 100644 index 0000000..940a79a --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/apples_cover.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "apples_cover.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/apples_cover.imageset/apples_cover.png b/swiftui/basic_app_swiftui/Assets.xcassets/apples_cover.imageset/apples_cover.png new file mode 100644 index 0000000..0790833 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/apples_cover.imageset/apples_cover.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/apples_hp.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/apples_hp.imageset/Contents.json new file mode 100644 index 0000000..0f5336b --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/apples_hp.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "apples_hp.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/apples_hp.imageset/apples_hp.png b/swiftui/basic_app_swiftui/Assets.xcassets/apples_hp.imageset/apples_hp.png new file mode 100644 index 0000000..1a5cfe3 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/apples_hp.imageset/apples_hp.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/appsflyerlogo.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/appsflyerlogo.imageset/Contents.json new file mode 100644 index 0000000..b419a22 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/appsflyerlogo.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "appsflyerlogo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/appsflyerlogo.imageset/appsflyerlogo.png b/swiftui/basic_app_swiftui/Assets.xcassets/appsflyerlogo.imageset/appsflyerlogo.png new file mode 100644 index 0000000..f1ba6b9 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/appsflyerlogo.imageset/appsflyerlogo.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/bananas_cover.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_cover.imageset/Contents.json new file mode 100644 index 0000000..90412de --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_cover.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "bananas_cover.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/bananas_cover.imageset/bananas_cover.png b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_cover.imageset/bananas_cover.png new file mode 100644 index 0000000..85b3e74 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_cover.imageset/bananas_cover.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/bananas_hp.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_hp.imageset/Contents.json new file mode 100644 index 0000000..5e054c6 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_hp.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "bananas_hp.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/bananas_hp.imageset/bananas_hp.png b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_hp.imageset/bananas_hp.png new file mode 100644 index 0000000..4473359 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/bananas_hp.imageset/bananas_hp.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/copy link button.imageset/Button M.png b/swiftui/basic_app_swiftui/Assets.xcassets/copy link button.imageset/Button M.png new file mode 100644 index 0000000..108b719 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/copy link button.imageset/Button M.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/copy link button.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/copy link button.imageset/Contents.json new file mode 100644 index 0000000..06b3c85 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/copy link button.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Button M.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/Contents.json new file mode 100644 index 0000000..69702a1 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/Contents.json @@ -0,0 +1,82 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "filename" : "onelinklogo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "onelinklogodark.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/onelinklogo.png b/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/onelinklogo.png new file mode 100644 index 0000000..4c47fe0 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/onelinklogo.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/onelinklogodark.png b/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/onelinklogodark.png new file mode 100644 index 0000000..9ac5395 Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/onelinklogo.imageset/onelinklogodark.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/peaches_cover.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_cover.imageset/Contents.json new file mode 100644 index 0000000..1d63d37 --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_cover.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "peaches_cover.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/peaches_cover.imageset/peaches_cover.png b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_cover.imageset/peaches_cover.png new file mode 100644 index 0000000..9cdeb4b Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_cover.imageset/peaches_cover.png differ diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/peaches_hp.imageset/Contents.json b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_hp.imageset/Contents.json new file mode 100644 index 0000000..ff3986d --- /dev/null +++ b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_hp.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "peaches_hp.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/swiftui/basic_app_swiftui/Assets.xcassets/peaches_hp.imageset/peaches_hp.png b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_hp.imageset/peaches_hp.png new file mode 100644 index 0000000..9b8e2fb Binary files /dev/null and b/swiftui/basic_app_swiftui/Assets.xcassets/peaches_hp.imageset/peaches_hp.png differ diff --git a/swiftui/basic_app_swiftui/BasicAppSwiftUIApp.swift b/swiftui/basic_app_swiftui/BasicAppSwiftUIApp.swift new file mode 100644 index 0000000..68ada42 --- /dev/null +++ b/swiftui/basic_app_swiftui/BasicAppSwiftUIApp.swift @@ -0,0 +1,21 @@ +// +// BasicAppSwiftUIApp.swift +// basic_app_swiftui +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI + +@main +struct BasicAppSwiftUIApp: App { + + @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate + + var body: some Scene { + WindowGroup { + MainView() + .environment(appDelegate.appState) + } + } +} diff --git a/swiftui/basic_app_swiftui/Info.plist b/swiftui/basic_app_swiftui/Info.plist new file mode 100644 index 0000000..37524cc --- /dev/null +++ b/swiftui/basic_app_swiftui/Info.plist @@ -0,0 +1,41 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + NSUserTrackingUsageDescription + This identifier will be used to deliver personalized ads to you. + UILaunchScreen + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/swiftui/basic_app_swiftui/Podfile b/swiftui/basic_app_swiftui/Podfile new file mode 100644 index 0000000..8f16911 --- /dev/null +++ b/swiftui/basic_app_swiftui/Podfile @@ -0,0 +1,6 @@ +platform :ios, '17.0' + +target 'basic_app_swiftui' do + use_frameworks! + pod 'appsflyer-apple-sdk-qa', '7.0.0.35704255' +end diff --git a/swiftui/basic_app_swiftui/Podfile.lock b/swiftui/basic_app_swiftui/Podfile.lock new file mode 100644 index 0000000..a6ec8b9 --- /dev/null +++ b/swiftui/basic_app_swiftui/Podfile.lock @@ -0,0 +1,18 @@ +PODS: + - appsflyer-apple-sdk-qa (7.0.0.35704255): + - appsflyer-apple-sdk-qa/Main (= 7.0.0.35704255) + - appsflyer-apple-sdk-qa/Main (7.0.0.35704255) + +DEPENDENCIES: + - appsflyer-apple-sdk-qa (= 7.0.0.35704255) + +SPEC REPOS: + trunk: + - appsflyer-apple-sdk-qa + +SPEC CHECKSUMS: + appsflyer-apple-sdk-qa: 8305ee27b951975812a06445f781448646358698 + +PODFILE CHECKSUM: 86cb6b3bb41f4cbbff46160ed85bcc1dc186b996 + +COCOAPODS: 1.16.2 diff --git a/swiftui/basic_app_swiftui/README.md b/swiftui/basic_app_swiftui/README.md new file mode 100644 index 0000000..88c1222 --- /dev/null +++ b/swiftui/basic_app_swiftui/README.md @@ -0,0 +1,123 @@ +# basic_app_swiftui + +A small SwiftUI iOS app that shows how to integrate the AppsFlyer iOS SDK and +handle OneLink deep links end‑to‑end: + +- Cold‑start (deferred) deep links resolved from conversion data +- Warm‑start direct deep links from Universal Links and custom URI schemes +- A shareable OneLink invite generated from inside the app +- A simple SwiftUI navigation flow driven by the resolved link payload + +The app is intentionally tiny — three "fruit" screens (Apples, Bananas, Peaches) +plus two info screens that surface the raw deep‑link and conversion‑data +payloads — so you can focus on the integration code, not the UI. + +## Requirements + +- Xcode 15 or later +- iOS 17+ simulator or device (uses `@Observable`) +- CocoaPods +- An Apple Developer team for signing (required for Universal Links) + +## Getting started + +```bash +cd swiftui/basic_app_swiftui +pod install +open basic_app_swiftui.xcworkspace +``` + +Then in Xcode: + +1. Select the `basic_app_swiftui` target. +2. Under **Signing & Capabilities**, set your development team. +3. Build and run on a simulator or device. + +> Always open the **`.xcworkspace`**, not the `.xcodeproj` — CocoaPods needs the +> workspace to link the AppsFlyer SDK. + +## How it's wired together + +``` +BasicAppSwiftUIApp (SwiftUI @main) + │ + │ @UIApplicationDelegateAdaptor + ▼ + AppDelegate + │ • Initializes AppsFlyerLib + │ • Receives delegate callbacks (conversion data, deep link) + │ • Forwards Universal Links and URL scheme opens to the SDK + │ • Owns the shared AppState + ▼ + AppState (@Observable, injected into the SwiftUI environment) + │ • conversionData + │ • deepLinkData + │ • currentRoute + ▼ + MainView + │ • Three fruit buttons + │ • Presents a sheet whenever currentRoute is set + ▼ + Fruit / DeepLink / ConversionData screens +``` + +When a OneLink is opened, the SDK resolves it and calls `didResolveDeepLink`. +The app maps the resolved `deep_link_value` (or legacy `fruit_name`) to a +`Route`, writes it to `AppState`, and SwiftUI presents the matching screen. + +## Project layout + +| Path | What it does | +|---|---| +| `BasicAppSwiftUIApp.swift` | SwiftUI app entry point, bridges to `AppDelegate`. | +| `AppDelegate.swift` | SDK initialization, conversion + deep link delegates, URL forwarding. | +| `AppState.swift` | Observable state container shared across the view tree. | +| `Routing/Route.swift` | Enum of navigable destinations and the `deep_link_value` → `Route` mapping. | +| `Screens/MainView.swift` | Landing screen + sheet presentation of the active route. | +| `Screens/ApplesView.swift`, `BananasView.swift`, `PeachesView.swift` | Fruit destination screens. | +| `Screens/DeepLinkView.swift` | Inspector for the most recent deep‑link payload. | +| `Screens/ConversionDataView.swift` | Inspector for the conversion‑data payload. | +| `Info.plist` | URL scheme + standard SwiftUI lifecycle config. | +| `basic_app_swiftui.entitlements` | Associated Domains for Universal Links. | + +## Testing deep links + +With the app installed on a booted simulator: + +```bash +# Universal Link +xcrun simctl openurl booted https://onelink-basic-app.onelink.me/H5hv/apples +xcrun simctl openurl booted https://onelink-basic-app.onelink.me/H5hv/bananas +xcrun simctl openurl booted https://onelink-basic-app.onelink.me/H5hv/peaches +``` + +To test a **deferred** deep link (first‑time install flow): + +1. Uninstall the app from the simulator. +2. Click a OneLink in Notes or Messages. +3. After install, watch the Xcode console — the conversion‑data callback + should fire and the app should auto‑navigate to the resolved fruit screen. + +Console lines tagged `[AFSDK-SwiftUI]` trace the integration flow and are a +good first stop when something doesn't behave as expected. + +## Configuring the sample for your own AppsFlyer account + +The values below live in `AppDelegate.swift` and are throwaway demo +credentials. Replace them with your own to point the sample at your app: + +| Setting | Where to change it | +|---|---| +| Dev key | `AppsFlyerLib.shared().initialize(devKey:appId:)` | +| App ID | `AppsFlyerLib.shared().initialize(devKey:appId:)` | +| OneLink ID | `AppsFlyerLib.shared().appInviteOneLinkID` | +| Bundle Identifier | Target → General → Bundle Identifier | +| Associated Domain | Target → Signing & Capabilities → Associated Domains | + +> The bundle identifier in Xcode **must** match the iOS bundle ID registered +> for your OneLink template in the AppsFlyer dashboard — a mismatch will cause +> Universal Links to silently fail to open the app. + +## License + +Sample code provided by AppsFlyer for demonstration purposes. diff --git a/swiftui/basic_app_swiftui/Routing/Route.swift b/swiftui/basic_app_swiftui/Routing/Route.swift new file mode 100644 index 0000000..726bbb9 --- /dev/null +++ b/swiftui/basic_app_swiftui/Routing/Route.swift @@ -0,0 +1,29 @@ +// +// Route.swift +// basic_app_swiftui +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import Foundation + +enum Route: Hashable, Identifiable { + case apples + case bananas + case peaches + case deepLink // shows resolved deep-link payload + share invite + case conversionData // shows attribution payload + + var id: Self { self } + + /// Map a raw value (deep_link_value or fruit_name) to a fruit Route. + /// Returns nil for unknown values so the caller can decide what to do. + static func fruit(from raw: String?) -> Route? { + switch raw?.lowercased() { + case "apples": return .apples + case "bananas": return .bananas + case "peaches": return .peaches + default: return nil + } + } +} diff --git a/swiftui/basic_app_swiftui/Screens/ApplesView.swift b/swiftui/basic_app_swiftui/Screens/ApplesView.swift new file mode 100644 index 0000000..f9131f8 --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/ApplesView.swift @@ -0,0 +1,17 @@ +// +// ApplesView.swift +// basic_app_swiftui +// +// Apples deep-link target. Renders FruitDetailView with the apples_cover +// asset (same layout as the UIKit ApplesViewController storyboard scene). +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI + +struct ApplesView: View { + var body: some View { + FruitDetailView(fruitName: "Apples", coverImage: "apples_cover") + } +} diff --git a/swiftui/basic_app_swiftui/Screens/BananasView.swift b/swiftui/basic_app_swiftui/Screens/BananasView.swift new file mode 100644 index 0000000..054e7a0 --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/BananasView.swift @@ -0,0 +1,17 @@ +// +// BananasView.swift +// basic_app_swiftui +// +// Bananas deep-link target. Renders FruitDetailView with the bananas_cover +// asset (same layout as the UIKit BananasViewController storyboard scene). +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI + +struct BananasView: View { + var body: some View { + FruitDetailView(fruitName: "Bananas", coverImage: "bananas_cover") + } +} diff --git a/swiftui/basic_app_swiftui/Screens/ConversionDataView.swift b/swiftui/basic_app_swiftui/Screens/ConversionDataView.swift new file mode 100644 index 0000000..5c62599 --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/ConversionDataView.swift @@ -0,0 +1,74 @@ +// +// ConversionDataView.swift +// basic_app_swiftui +// +// Mirrors the UIKit ConversionDataViewController storyboard scene: +// a gray "Conversion data parameters" header label at the top and a +// scrollable list of the attribution payload below it. +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI + +struct ConversionDataView: View { + @Environment(AppState.self) private var appState + + var body: some View { + VStack(alignment: .leading, spacing: 0) { + Text("Conversion data parameters") + .font(.system(size: 14)) + .foregroundStyle(.gray) + .padding(.leading, 57) + .padding(.top, 47) + + if let data = appState.conversionData, !data.isEmpty { + ScrollView { + VStack(alignment: .leading, spacing: 8) { + ForEach(data.keys.sorted(), id: \.self) { key in + HStack(alignment: .top) { + Text(key) + .font(.system(size: 14, weight: .semibold)) + Spacer() + Text(stringify(data[key])) + .font(.system(size: 14)) + .foregroundStyle(.secondary) + .multilineTextAlignment(.trailing) + } + } + } + .padding(.horizontal, 47) + .padding(.top, 20) + } + } else { + VStack(spacing: 12) { + Spacer() + Image(systemName: "hourglass") + .font(.system(size: 48)) + .foregroundStyle(.secondary) + Text("Conversion data not available at the moment") + .font(.system(size: 14)) + .foregroundStyle(.secondary) + .multilineTextAlignment(.center) + .padding(.horizontal, 32) + Spacer() + } + .frame(maxWidth: .infinity) + } + } + .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading) + .background(Color(.systemBackground)) + .navigationTitle("Conversion Data") + .navigationBarTitleDisplayMode(.inline) + } + + private func stringify(_ value: Any?) -> String { + switch value { + case let s as String: return s + case let b as Bool: return b.description + case let n as NSNumber: return n.stringValue + case .some(let v): return String(describing: v) + case .none: return "null" + } + } +} diff --git a/swiftui/basic_app_swiftui/Screens/DeepLinkView.swift b/swiftui/basic_app_swiftui/Screens/DeepLinkView.swift new file mode 100644 index 0000000..e346627 --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/DeepLinkView.swift @@ -0,0 +1,180 @@ +// +// DeepLinkView.swift +// basic_app_swiftui +// +// Shows the resolved deep-link payload and a Share Invite button that +// uses `AppsFlyerShareInviteHelper.generateInviteLink` and iOS 16+ +// `ShareLink` for system share sheet presentation. +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI +import AppsFlyerLib + +/// Identifiable wrapper so `.sheet(item:)` can present a `ShareLink`-backed sheet. +private struct ShareItem: Identifiable { + let id = UUID() + let url: URL +} + +struct DeepLinkView: View { + @Environment(AppState.self) private var appState + + @State private var shareItem: ShareItem? + @State private var isGenerating = false + @State private var errorMessage: String? + + var body: some View { + List { + if let payload = appState.deepLinkData, !payload.isEmpty { + Section("Payload") { + KeyValueList(payload: payload) + } + } else { + Section { + Text("No deep link received yet.") + .foregroundStyle(.secondary) + } + } + + Section { + Button { + generateInvite() + } label: { + HStack { + Label("Share Invite Link", systemImage: "square.and.arrow.up") + if isGenerating { + Spacer() + ProgressView() + } + } + } + .disabled(isGenerating) + + if let errorMessage { + Text(errorMessage) + .font(.caption) + .foregroundStyle(.red) + } + } + } + .navigationTitle("Deep Link Details") + .sheet(item: $shareItem) { item in + // iOS 16+ system share sheet via ShareLink, wrapped in a sheet + // because we only have the URL after the async callback resolves. + ShareSheet(url: item.url) + } + } + + private func generateInvite() { + isGenerating = true + errorMessage = nil + + AppsFlyerShareInviteHelper.generateInviteLink(linkGenerator: { generator in + generator.setCampaign("share_invite") + generator.setChannel("mobile_share") + generator.addParameterValue("apples", forKey: "deep_link_value") + generator.addParameterValue("THIS_USER_ID", forKey: "deep_link_sub2") + return generator + }, completionHandler: { url, error in + DispatchQueue.main.async { + isGenerating = false + if let error { + NSLog("[AFSDK-SwiftUI] generateInviteLink failed: \(error)") + errorMessage = "Failed to generate invite link." + return + } + guard let url else { + errorMessage = "Invite link was empty." + return + } + shareItem = ShareItem(url: url) + AppsFlyerShareInviteHelper.logInvite("mobile_share", eventParameters: [ + "referrerId": "THIS_USER_ID", + "campaign": "share_invite", + "af_channel": "mobile_share" + ]) + } + }) + } +} + +/// Renders a `[AnyHashable: Any]` dictionary as sorted key/value rows. +/// Kept here (the most key-value-heavy view) instead of a shared file. +struct KeyValueList: View { + let payload: [AnyHashable: Any] + + var body: some View { + let keys = payload.keys + .compactMap { $0 as? String } + .sorted() + + ForEach(keys, id: \.self) { key in + HStack(alignment: .top) { + Text(key) + .font(.subheadline.weight(.semibold)) + Spacer() + Text(stringify(payload[key as AnyHashable])) + .font(.subheadline) + .foregroundStyle(.secondary) + .multilineTextAlignment(.trailing) + } + } + } + + private func stringify(_ value: Any?) -> String { + switch value { + case let s as String: return s + case let b as Bool: return b.description + case let n as NSNumber: return n.stringValue + case .some(let v): return String(describing: v) + case .none: return "null" + } + } +} + +/// Thin wrapper presenting a `ShareLink` inside a sheet so it can be +/// triggered programmatically after the SDK's async callback returns. +private struct ShareSheet: View { + let url: URL + @Environment(\.dismiss) private var dismiss + + var body: some View { + NavigationStack { + VStack(spacing: 24) { + Image(systemName: "link.circle.fill") + .font(.system(size: 56)) + .foregroundStyle(.tint) + + Text("Invite link ready") + .font(.headline) + + Text(url.absoluteString) + .font(.footnote) + .foregroundStyle(.secondary) + .multilineTextAlignment(.center) + .textSelection(.enabled) + .padding(.horizontal) + + ShareLink(item: url) { + Label("Share", systemImage: "square.and.arrow.up") + .frame(maxWidth: .infinity) + } + .buttonStyle(.borderedProminent) + .controlSize(.large) + .padding(.horizontal) + + Spacer() + } + .padding(.top, 32) + .navigationTitle("Share Invite") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Button("Done") { dismiss() } + } + } + } + } +} diff --git a/swiftui/basic_app_swiftui/Screens/FruitDetailView.swift b/swiftui/basic_app_swiftui/Screens/FruitDetailView.swift new file mode 100644 index 0000000..beb61ca --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/FruitDetailView.swift @@ -0,0 +1,157 @@ +// +// FruitDetailView.swift +// basic_app_swiftui +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI +import AppsFlyerLib + +struct FruitDetailView: View { + let fruitName: String + let coverImage: String + + @Environment(AppState.self) private var appState + @State private var shareURL: URL? + + var body: some View { + VStack(alignment: .leading, spacing: 0) { + ZStack { + Image(coverImage) + .resizable() + .scaledToFill() + .frame(height: 220) + .clipped() + + if let amount = fruitAmount { + Text(amount) + .font(.system(size: 50, weight: .bold)) + .foregroundStyle(.white) + .shadow(color: Color(.systemGray2), radius: 2, x: 0, y: 1) + } + } + .frame(height: 220) + .frame(maxWidth: .infinity) + + Text("Deep Link parameters") + .font(.system(size: 14)) + .foregroundStyle(.gray) + .padding(.top, 30) + .padding(.leading, 30) + + ScrollView { + VStack(alignment: .leading, spacing: 6) { + if let data = appState.deepLinkData, !data.isEmpty { + ForEach(sortedKeys(of: data), id: \.self) { key in + HStack(alignment: .top) { + Text(key) + .font(.system(size: 14, weight: .semibold)) + Spacer() + Text(stringify(data[key])) + .font(.system(size: 14)) + .foregroundStyle(.secondary) + .multilineTextAlignment(.trailing) + } + } + } else { + Text("No Deep Linking happened") + .font(.system(size: 14)) + .foregroundStyle(.secondary) + } + } + .padding(.horizontal, 30) + .padding(.top, 8) + } + + VStack(spacing: 12) { + Button(action: generateAndShare) { + Image("copy link button") + .resizable() + .scaledToFit() + .frame(width: 133, height: 43) + } + .buttonStyle(.plain) + .accessibilityLabel("Share invite link") + + NavigationLink { + ConversionDataView() + } label: { + Text("Show conversion data") + .font(.system(size: 19)) + .foregroundStyle(Color(red: 0.0, green: 0.478, blue: 1.0)) + } + } + .frame(maxWidth: .infinity) + .padding(.bottom, 11) + } + .background(Color(.systemBackground)) + .toolbar(.hidden, for: .navigationBar) + .ignoresSafeArea(.container, edges: .top) + .sheet(isPresented: Binding( + get: { shareURL != nil }, + set: { if !$0 { shareURL = nil } } + )) { + if let url = shareURL { + ActivityView(items: [url]) + .presentationDetents([.medium]) + } + } + } + + private var fruitAmount: String? { + guard let data = appState.deepLinkData else { return nil } + if let raw = data["deep_link_sub1"] { + return String(describing: raw) + } + return nil + } + + // MARK: - Helpers + + private func sortedKeys(of dict: [AnyHashable: Any]) -> [String] { + dict.keys.compactMap { $0 as? String }.sorted() + } + + private func stringify(_ value: Any?) -> String { + switch value { + case let s as String: return s + case let b as Bool: return b.description + case let n as NSNumber: return n.stringValue + case .some(let v): return String(describing: v) + case .none: return "null" + } + } + + private func generateAndShare() { + AppsFlyerShareInviteHelper.generateInviteLink(linkGenerator: { generator in + generator.setCampaign("share_invite") + generator.setChannel("mobile_share") + generator.addParameterValue(fruitName.lowercased(), forKey: "deep_link_value") + generator.addParameterValue("THIS_USER_ID", forKey: "deep_link_sub2") + return generator + }) { url, error in + DispatchQueue.main.async { + if let error { + NSLog("[AFSDK-SwiftUI] generateInviteLink failed: \(error)") + return + } + guard let url else { return } + AppsFlyerShareInviteHelper.logInvite("mobile_share", eventParameters: [ + "referrerId": "THIS_USER_ID", + "campaign": "share_invite", + "af_channel": "mobile_share" + ]) + shareURL = url + } + } + } +} + +private struct ActivityView: UIViewControllerRepresentable { + let items: [Any] + func makeUIViewController(context: Context) -> UIActivityViewController { + UIActivityViewController(activityItems: items, applicationActivities: nil) + } + func updateUIViewController(_ vc: UIActivityViewController, context: Context) {} +} diff --git a/swiftui/basic_app_swiftui/Screens/MainView.swift b/swiftui/basic_app_swiftui/Screens/MainView.swift new file mode 100644 index 0000000..70d687c --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/MainView.swift @@ -0,0 +1,117 @@ +// +// MainView.swift +// basic_app_swiftui +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI +import AppsFlyerLib + +struct MainView: View { + @Environment(AppState.self) private var appState + + private let oneLinkBlue = Color(red: 0.0, green: 0.478, blue: 1.0) + + var body: some View { + @Bindable var binding = appState + + VStack(alignment: .leading, spacing: 0) { + HStack(spacing: 40) { + Image("appsflyerlogo") + .resizable() + .scaledToFit() + .frame(maxWidth: .infinity) + .frame(height: 60) + Image("onelinklogo") + .resizable() + .scaledToFit() + .frame(maxWidth: .infinity) + .frame(height: 60) + } + .padding(.top, 10) + .padding(.horizontal, 30) + + VStack(alignment: .leading, spacing: 15) { + Text("OneLink Simulator") + .font(.system(size: 36, weight: .bold)) + .foregroundStyle(oneLinkBlue) + Text("Find the magic of deep link parameters") + .font(.system(size: 18, weight: .bold)) + .foregroundStyle(oneLinkBlue) + .fixedSize(horizontal: false, vertical: true) + } + .padding(.top, 25) + .padding(.horizontal, 30) + + Spacer() + + VStack(spacing: 20) { + FruitCard(name: "Apples", imageName: "apples_hp", route: .apples) + FruitCard(name: "Bananas", imageName: "bananas_hp", route: .bananas) + FruitCard(name: "Peaches", imageName: "peaches_hp", route: .peaches) + } + .padding(.horizontal, 30) + .padding(.bottom, 30) + } + .frame(maxWidth: .infinity, maxHeight: .infinity) + .background(Color(.systemBackground)) + .sheet(item: $binding.currentRoute) { route in + NavigationStack { + destination(for: route) + } + .presentationDragIndicator(.visible) + } + .onContinueUserActivity(NSUserActivityTypeBrowsingWeb) { userActivity in + AppsFlyerLib.shared().continue(userActivity, restorationHandler: nil) + } + .onOpenURL { url in + AppsFlyerLib.shared().handleOpen(url, options: nil) + } + } + + @ViewBuilder + private func destination(for route: Route) -> some View { + switch route { + case .apples: ApplesView() + case .bananas: BananasView() + case .peaches: PeachesView() + case .deepLink: DeepLinkView() + case .conversionData: ConversionDataView() + } + } +} + +private struct FruitCard: View { + let name: String + let imageName: String + let route: Route + + @Environment(AppState.self) private var appState + + var body: some View { + Button { + @Bindable var binding = appState + binding.currentRoute = route + } label: { + ZStack(alignment: .bottomLeading) { + Image(imageName) + .resizable() + .scaledToFill() + .frame(height: 100) + .clipped() + + Text(name) + .font(.system(size: 22, weight: .bold)) + .foregroundStyle(.white) + .padding(.leading, 13) + .padding(.bottom, 7) + } + .frame(height: 100) + .frame(maxWidth: .infinity) + .clipShape(RoundedRectangle(cornerRadius: 4)) + } + .buttonStyle(.plain) + .accessibilityLabel("\(name) fruit screen") + } +} diff --git a/swiftui/basic_app_swiftui/Screens/PeachesView.swift b/swiftui/basic_app_swiftui/Screens/PeachesView.swift new file mode 100644 index 0000000..0179cc9 --- /dev/null +++ b/swiftui/basic_app_swiftui/Screens/PeachesView.swift @@ -0,0 +1,17 @@ +// +// PeachesView.swift +// basic_app_swiftui +// +// Peaches deep-link target. Renders FruitDetailView with the peaches_cover +// asset (same layout as the UIKit PeachesViewController storyboard scene). +// +// Copyright © 2026 AppsFlyer. All rights reserved. +// + +import SwiftUI + +struct PeachesView: View { + var body: some View { + FruitDetailView(fruitName: "Peaches", coverImage: "peaches_cover") + } +} diff --git a/swiftui/basic_app_swiftui/basic_app_swiftui.entitlements b/swiftui/basic_app_swiftui/basic_app_swiftui.entitlements new file mode 100644 index 0000000..06cb1c4 --- /dev/null +++ b/swiftui/basic_app_swiftui/basic_app_swiftui.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.developer.associated-domains + + applinks:onelink-basic-app.onelink.me + + + diff --git a/swiftui/basic_app_swiftui/basic_app_swiftui.xcodeproj/project.pbxproj b/swiftui/basic_app_swiftui/basic_app_swiftui.xcodeproj/project.pbxproj new file mode 100644 index 0000000..4c4bcd0 --- /dev/null +++ b/swiftui/basic_app_swiftui/basic_app_swiftui.xcodeproj/project.pbxproj @@ -0,0 +1,447 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 63; + objects = { + +/* Begin PBXBuildFile section */ + 1A81FFF6C4CC36AE53FE0485 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9937F931C6354C5EA5B354DA /* AppDelegate.swift */; }; + 1EB690DD83DA7450E8F072FA /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B9AE7B24D7FCF64539C4F3A2 /* Assets.xcassets */; }; + 25CD1D9B0F9E09413E4DE510 /* ConversionDataView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0829A981B651C930FB8F6C66 /* ConversionDataView.swift */; }; + 30D70C1DA8E12A0A3445CD59 /* Route.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED0B39D6A0C2BF5D31984195 /* Route.swift */; }; + 42F7A8DD959BA1CDC317A1CD /* ApplesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B1B7A441B4DB1FDF733818C /* ApplesView.swift */; }; + 47D91780B923FAEA5F71CC01 /* DeepLinkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7555C3FF276E59CA93E8D796 /* DeepLinkView.swift */; }; + 507025F6B1D45896CA33AE05 /* Pods_basic_app_swiftui.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 083B8D312EFDD943752A32B1 /* Pods_basic_app_swiftui.framework */; }; + 650DDC8445DA11BA6890102D /* AppState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF4873BEDEFEDABCB4C596D1 /* AppState.swift */; }; + 65C903D8B1B6D72A7032399F /* FruitDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4557D9661B48E642064CB49E /* FruitDetailView.swift */; }; + 84E5CF3CDD6B8E37CE4CFFF6 /* PeachesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1301CE3FB5CE2FBC19A81996 /* PeachesView.swift */; }; + 8654C543BB36F489B97931C7 /* BananasView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 768AFF6E159FA284365819CB /* BananasView.swift */; }; + 8835E2F9DDEC6FC3835523E3 /* BasicAppSwiftUIApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FE9C683B20934345CBDE14E /* BasicAppSwiftUIApp.swift */; }; + EDE725E3D0A4A66D92502B11 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BF052EF4ACDEBAE6751A3F /* MainView.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 0829A981B651C930FB8F6C66 /* ConversionDataView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConversionDataView.swift; sourceTree = ""; }; + 083B8D312EFDD943752A32B1 /* Pods_basic_app_swiftui.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_basic_app_swiftui.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0B1B7A441B4DB1FDF733818C /* ApplesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplesView.swift; sourceTree = ""; }; + 1026D19A61E56AD7BDAE298A /* Pods-basic_app_swiftui.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-basic_app_swiftui.debug.xcconfig"; path = "Target Support Files/Pods-basic_app_swiftui/Pods-basic_app_swiftui.debug.xcconfig"; sourceTree = ""; }; + 1301CE3FB5CE2FBC19A81996 /* PeachesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PeachesView.swift; sourceTree = ""; }; + 22BF052EF4ACDEBAE6751A3F /* MainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = ""; }; + 3FE9C683B20934345CBDE14E /* BasicAppSwiftUIApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicAppSwiftUIApp.swift; sourceTree = ""; }; + 4557D9661B48E642064CB49E /* FruitDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FruitDetailView.swift; sourceTree = ""; }; + 7555C3FF276E59CA93E8D796 /* DeepLinkView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeepLinkView.swift; sourceTree = ""; }; + 768AFF6E159FA284365819CB /* BananasView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BananasView.swift; sourceTree = ""; }; + 9937F931C6354C5EA5B354DA /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + B708D8A2DF6AF5D67DBC70C2 /* basic_app_swiftui.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = basic_app_swiftui.app; sourceTree = BUILT_PRODUCTS_DIR; }; + B9AE7B24D7FCF64539C4F3A2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + DF4873BEDEFEDABCB4C596D1 /* AppState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppState.swift; sourceTree = ""; }; + EB086413C056416B9AF7A10C /* Pods-basic_app_swiftui.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-basic_app_swiftui.release.xcconfig"; path = "Target Support Files/Pods-basic_app_swiftui/Pods-basic_app_swiftui.release.xcconfig"; sourceTree = ""; }; + ED0B39D6A0C2BF5D31984195 /* Route.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Route.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + F018E79BE5AEEA76D773CDCC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 507025F6B1D45896CA33AE05 /* Pods_basic_app_swiftui.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 2D49ACC3C9EB3B3A0E877AF7 /* Screens */ = { + isa = PBXGroup; + children = ( + 0B1B7A441B4DB1FDF733818C /* ApplesView.swift */, + 768AFF6E159FA284365819CB /* BananasView.swift */, + 0829A981B651C930FB8F6C66 /* ConversionDataView.swift */, + 7555C3FF276E59CA93E8D796 /* DeepLinkView.swift */, + 4557D9661B48E642064CB49E /* FruitDetailView.swift */, + 22BF052EF4ACDEBAE6751A3F /* MainView.swift */, + 1301CE3FB5CE2FBC19A81996 /* PeachesView.swift */, + ); + path = Screens; + sourceTree = ""; + }; + 3B67ABA6CA3DF2F00F5E6640 /* Products */ = { + isa = PBXGroup; + children = ( + B708D8A2DF6AF5D67DBC70C2 /* basic_app_swiftui.app */, + ); + name = Products; + sourceTree = ""; + }; + AAC74E283A7D18AF79443A7F /* Routing */ = { + isa = PBXGroup; + children = ( + ED0B39D6A0C2BF5D31984195 /* Route.swift */, + ); + path = Routing; + sourceTree = ""; + }; + C36439DA4E9958E347EF4055 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 083B8D312EFDD943752A32B1 /* Pods_basic_app_swiftui.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + CEDF45A570109FF14186C24E /* Pods */ = { + isa = PBXGroup; + children = ( + 1026D19A61E56AD7BDAE298A /* Pods-basic_app_swiftui.debug.xcconfig */, + EB086413C056416B9AF7A10C /* Pods-basic_app_swiftui.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + DEE0EE6B21406801200774F9 = { + isa = PBXGroup; + children = ( + 9937F931C6354C5EA5B354DA /* AppDelegate.swift */, + DF4873BEDEFEDABCB4C596D1 /* AppState.swift */, + B9AE7B24D7FCF64539C4F3A2 /* Assets.xcassets */, + 3FE9C683B20934345CBDE14E /* BasicAppSwiftUIApp.swift */, + AAC74E283A7D18AF79443A7F /* Routing */, + 2D49ACC3C9EB3B3A0E877AF7 /* Screens */, + 3B67ABA6CA3DF2F00F5E6640 /* Products */, + CEDF45A570109FF14186C24E /* Pods */, + C36439DA4E9958E347EF4055 /* Frameworks */, + ); + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 36F773C6E12CC3A6A55BFFA8 /* basic_app_swiftui */ = { + isa = PBXNativeTarget; + buildConfigurationList = 082ACA5E61F9449D6B514DD9 /* Build configuration list for PBXNativeTarget "basic_app_swiftui" */; + buildPhases = ( + C30B91627B7DB42ECC343C2F /* [CP] Check Pods Manifest.lock */, + 06B12E22C418D0E91F9E44CA /* Sources */, + 3F46B58E595AC1C0F4C5B6C5 /* Resources */, + F018E79BE5AEEA76D773CDCC /* Frameworks */, + 6E4E91E88C8C421A5BF0726B /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = basic_app_swiftui; + productName = basic_app_swiftui; + productReference = B708D8A2DF6AF5D67DBC70C2 /* basic_app_swiftui.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 56969D3711E5D0F8F7AB037F /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1430; + TargetAttributes = { + 36F773C6E12CC3A6A55BFFA8 = { + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = 0AB1C7CE2E16BE1A7BED431E /* Build configuration list for PBXProject "basic_app_swiftui" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = DEE0EE6B21406801200774F9; + minimizedProjectReferenceProxies = 1; + productRefGroup = 3B67ABA6CA3DF2F00F5E6640 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 36F773C6E12CC3A6A55BFFA8 /* basic_app_swiftui */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 3F46B58E595AC1C0F4C5B6C5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1EB690DD83DA7450E8F072FA /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 6E4E91E88C8C421A5BF0726B /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-basic_app_swiftui/Pods-basic_app_swiftui-resources-${CONFIGURATION}-input-files.xcfilelist", + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-basic_app_swiftui/Pods-basic_app_swiftui-resources-${CONFIGURATION}-output-files.xcfilelist", + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-basic_app_swiftui/Pods-basic_app_swiftui-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + C30B91627B7DB42ECC343C2F /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-basic_app_swiftui-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 06B12E22C418D0E91F9E44CA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1A81FFF6C4CC36AE53FE0485 /* AppDelegate.swift in Sources */, + 650DDC8445DA11BA6890102D /* AppState.swift in Sources */, + 42F7A8DD959BA1CDC317A1CD /* ApplesView.swift in Sources */, + 8654C543BB36F489B97931C7 /* BananasView.swift in Sources */, + 8835E2F9DDEC6FC3835523E3 /* BasicAppSwiftUIApp.swift in Sources */, + 25CD1D9B0F9E09413E4DE510 /* ConversionDataView.swift in Sources */, + 47D91780B923FAEA5F71CC01 /* DeepLinkView.swift in Sources */, + 65C903D8B1B6D72A7032399F /* FruitDetailView.swift in Sources */, + EDE725E3D0A4A66D92502B11 /* MainView.swift in Sources */, + 84E5CF3CDD6B8E37CE4CFFF6 /* PeachesView.swift in Sources */, + 30D70C1DA8E12A0A3445CD59 /* Route.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 045F7493CFC40183A619E5A7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1026D19A61E56AD7BDAE298A /* Pods-basic_app_swiftui.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = basic_app_swiftui.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = 6UQAD4B3U2; + INFOPLIST_FILE = Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.AppsFlyer.KamperDemo; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 95BDC645AB65C113D87F9894 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "DEBUG=1", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + GENERATE_INFOPLIST_FILE = NO; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + MARKETING_VERSION = 1.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + B69D20B74F50A75ED7A76E26 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + GENERATE_INFOPLIST_FILE = NO; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + MARKETING_VERSION = 1.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + E08EA0EEC12600465C405B67 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EB086413C056416B9AF7A10C /* Pods-basic_app_swiftui.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = basic_app_swiftui.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = 6UQAD4B3U2; + INFOPLIST_FILE = Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.AppsFlyer.KamperDemo; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 082ACA5E61F9449D6B514DD9 /* Build configuration list for PBXNativeTarget "basic_app_swiftui" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 045F7493CFC40183A619E5A7 /* Debug */, + E08EA0EEC12600465C405B67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0AB1C7CE2E16BE1A7BED431E /* Build configuration list for PBXProject "basic_app_swiftui" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 95BDC645AB65C113D87F9894 /* Debug */, + B69D20B74F50A75ED7A76E26 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = 56969D3711E5D0F8F7AB037F /* Project object */; +} diff --git a/swiftui/basic_app_swiftui/basic_app_swiftui.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/swiftui/basic_app_swiftui/basic_app_swiftui.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/swiftui/basic_app_swiftui/basic_app_swiftui.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/swiftui/basic_app_swiftui/basic_app_swiftui.xcworkspace/contents.xcworkspacedata b/swiftui/basic_app_swiftui/basic_app_swiftui.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..841089a --- /dev/null +++ b/swiftui/basic_app_swiftui/basic_app_swiftui.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/swiftui/basic_app_swiftui/project.yml b/swiftui/basic_app_swiftui/project.yml new file mode 100644 index 0000000..af05b6d --- /dev/null +++ b/swiftui/basic_app_swiftui/project.yml @@ -0,0 +1,64 @@ +name: basic_app_swiftui +options: + bundleIdPrefix: com.AppsFlyer + deploymentTarget: + iOS: "17.0" + developmentLanguage: en + createIntermediateGroups: true + +settings: + base: + MARKETING_VERSION: "1.0" + CURRENT_PROJECT_VERSION: "1" + SWIFT_VERSION: "5.0" + GENERATE_INFOPLIST_FILE: NO + ENABLE_USER_SCRIPT_SANDBOXING: NO + +targets: + basic_app_swiftui: + type: application + platform: iOS + deploymentTarget: "17.0" + sources: + - path: BasicAppSwiftUIApp.swift + - path: AppDelegate.swift + - path: AppState.swift + - path: Routing + - path: Screens + - path: Assets.xcassets + entitlements: + path: basic_app_swiftui.entitlements + properties: + com.apple.developer.associated-domains: + - applinks:onelink-basic-app.onelink.me + info: + path: Info.plist + properties: + CFBundleDevelopmentRegion: $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable: $(EXECUTABLE_NAME) + CFBundleIdentifier: $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion: "6.0" + CFBundleName: $(PRODUCT_NAME) + CFBundlePackageType: APPL + CFBundleShortVersionString: "1.0" + CFBundleVersion: "1" + LSRequiresIPhoneOS: true + UILaunchScreen: {} + UISupportedInterfaceOrientations: + - UIInterfaceOrientationPortrait + - UIInterfaceOrientationLandscapeLeft + - UIInterfaceOrientationLandscapeRight + UISupportedInterfaceOrientations~ipad: + - UIInterfaceOrientationPortrait + - UIInterfaceOrientationPortraitUpsideDown + - UIInterfaceOrientationLandscapeLeft + - UIInterfaceOrientationLandscapeRight + NSUserTrackingUsageDescription: "This identifier will be used to deliver personalized ads to you." + settings: + base: + PRODUCT_BUNDLE_IDENTIFIER: com.AppsFlyer.KamperDemo + INFOPLIST_FILE: Info.plist + TARGETED_DEVICE_FAMILY: "1,2" + CODE_SIGN_STYLE: Automatic + ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor